@@ -117,7 +117,8 @@
能力使用明细
-->
- 隐藏空数据
+ 隐藏空数据
明细
@@ -168,14 +169,10 @@
-
-
+
+
@@ -233,7 +230,7 @@ import Template from '../devtools/template.vue'
// })
export default {
components: { componentServices, applicationResources, ComponentUsed, AbilityDetail, Template },
- data () {
+ data() {
return {
checked: false,
departmentSelects: [],
@@ -366,7 +363,7 @@ export default {
endDate: '' // 结束时间
}
},
- created () {
+ created() {
this.$http.get('/sys/dept/all').then(res => {
// console.log('获取部门=========>', res)
this.departmentSelects = []
@@ -387,7 +384,7 @@ export default {
// const date2 = new Date(year2, month2, day2, 7)
// this.value1.unshift(date2)
},
- mounted () {
+ mounted() {
// this.getFirstTree()
if (this.departmentId === 1) {
this.handleChose(3)
@@ -402,7 +399,7 @@ export default {
// ...mapState(['departmentSelects'])
},
methods: {
- chagneCheckbox () {
+ chagneCheckbox() {
if (this.checked) {
this.tableData = this.tableDataClone.filter(val => val.count !== 0)
this.total = this.tableData.length
@@ -411,10 +408,10 @@ export default {
this.total = this.tableData.length
}
},
- closeModal () {
+ closeModal() {
this.detailsVisible = false
},
- handleCurrentChange (val) {
+ handleCurrentChange(val) {
console.log('val------------>', val)
this.currentPage = val
// todo
@@ -431,7 +428,7 @@ export default {
// this.getReleaseTree(val)
// }
},
- getTreeName (data) {
+ getTreeName(data) {
this.$http
.get('/census/center/v3/treeList/', {
params: {
@@ -461,7 +458,7 @@ export default {
// },
// 组件服务部门发布情况--改为能力上架统计
- getFirstTree (page) {
+ getFirstTree(page) {
if (this.examineStatus == '-1') {
this.status = ''
} else if (this.examineStatus == '0') {
@@ -527,7 +524,7 @@ export default {
})
},
// 组件服务部门使用情况列表-改为能力使用统计
- getSecondTree (page) {
+ getSecondTree(page) {
if (this.examineStatus == '-1') {
this.status = ''
} else if (this.examineStatus == '0') {
@@ -593,7 +590,7 @@ export default {
})
},
// 点击查看详情
- detailClick (row) {
+ detailClick(row) {
this.detailParamss = {}
const applyNumber = row.applyNumber
if (this.departmentId == 3) { // 能力上架
@@ -635,7 +632,7 @@ export default {
}
},
// 能力上架明细 能力上架统计
- getOneDetail (page) {
+ getOneDetail(page) {
var passAndReview = '' // 转变"通过"字段为通过
if (this.examineStatus == '-1') {
this.status = ''
@@ -674,7 +671,7 @@ export default {
})
},
// 能力使用明细 能力使用统计
- getTwoDetail (page) {
+ getTwoDetail(page) {
var passAndReview = '' // 转变"通过"字段为通过
if (this.examineStatus == '-1') {
this.status = ''
@@ -711,7 +708,7 @@ export default {
})
})
},
- getReleaseTree (page) {
+ getReleaseTree(page) {
this.$http
.get('/census/center/selectApplyDeptDetailTypeCountList/', {
params: {
@@ -758,7 +755,7 @@ export default {
})
},
// 应用资源部门使用情况列表
- getUsedTree () {
+ getUsedTree() {
this.$http
.get('/census/center/v3/resourceReleaseDetails/', {
params: {
@@ -772,7 +769,7 @@ export default {
this.tableData = res.data.data.list
})
},
- handleClick (row) {
+ handleClick(row) {
if (this.choseId === 0) {
if (this.departmentId === 1) {
this.homeIsShow = false
@@ -793,7 +790,7 @@ export default {
}
},
// 选择组件
- choseBtn (index) {
+ choseBtn(index) {
this.choseId = index
this.handleChose(1)
},
@@ -809,7 +806,7 @@ export default {
// }
// },
// 选择发布or使用表格
- handleChose (index) {
+ handleChose(index) {
this.checked = false
this.departmentId = index
if (index === 1) {
@@ -851,26 +848,26 @@ export default {
}
},
// 翻页
- handleSizeChange (val) {
+ handleSizeChange(val) {
console.log(`每页 ${val} 条`)
},
- closeChild () {
+ closeChild() {
this.homeIsShow = true
this.servicesIsShow = false
this.handleCurrentChange(1)
},
- closeChild2 () {
+ closeChild2() {
this.homeIsShow = true
this.UsedIsShow = false
this.handleCurrentChange(1)
},
- closeApplication () {
+ closeApplication() {
this.homeIsShow = true
this.resourcesIsShow = false
this.handleCurrentChange(1)
},
// 明细按钮函数//明细按钮函数//明细按钮函数//明细按钮函数//明细按钮函数//明细按钮函数
- goToDetail () {
+ goToDetail() {
this.detailFlag = !this.detailFlag
if (this.departmentId === 1) {
this.handleChose(3)
@@ -882,7 +879,7 @@ export default {
}
},
// 返回按钮
- goToBack () {
+ goToBack() {
this.checked = false
// departmentId 1,3 2,4 两个值共同判断
this.detailFlag = !this.detailFlag
@@ -896,7 +893,7 @@ export default {
}
},
// 点击查询按钮查询数据
- getDataList () {
+ getDataList() {
if (this.value1 && this.value1.length > 0) {
this.startDate = this.handleTime(this.value1[0], 'yyyy-MM-dd')
this.endDate = this.handleTime(this.value1[1], 'yyyy-MM-dd')
@@ -927,7 +924,7 @@ export default {
}
},
// 重置按钮查询数据
- resetDataList () {
+ resetDataList() {
this.value1 = []
this.startDate = ''
this.endDate = ''
@@ -965,7 +962,7 @@ export default {
}
},
// 定义格式化函数:
- handleTime (time, format) {
+ handleTime(time, format) {
if (time == null || time == undefined || time == '') {
return ''
}
@@ -1159,24 +1156,16 @@ input::placeholder {
background: #fff;
border: 1px solid #dcdfe6;
color: #000;
+ color: #FFF;
+ background-color: #0058e1;
+ border-color: #0058e1;
+ text-decoration: none;
}
.export:hover {
- border-color: #c5ddfd;
- background-color: #ecf4fe;
- color: #0058e1;
- text-decoration: none;
+ background: #65a5f9;
+ border-color: #65a5f9;
+ color: #FFF;
}
-.export:active {
- border-color: #c5ddfd;
- background-color: #ecf4fe;
- color: #0058e1;
- text-decoration: none;
-}
-
-.export:visited {
- color: #fff;
- text-decoration: none;
-}