对接认证目录权限
This commit is contained in:
+8
-6
@@ -79,10 +79,11 @@
|
||||
getData() {
|
||||
getAction(this.url.getProjectDetailsStatistics, { id: this.$route.query.id }).then((res) => {
|
||||
if (res.success) {
|
||||
this.dataSource = [{}]
|
||||
let dataSource = res.result.currentProjectStatusMap.currentProjectStatusMapList || []
|
||||
this.mainLeftEcharts(dataSource)
|
||||
this.currentProjectStatusTotal = res.result.currentProjectStatusMap.currentProjectStatusTotal
|
||||
if (res.result) {
|
||||
let dataSource = res.result.currentProjectStatusMap ? res.result.currentProjectStatusMap.currentProjectStatusMapList : []
|
||||
this.mainLeftEcharts(dataSource)
|
||||
this.currentProjectStatusTotal = res.result.currentProjectStatusMap ? res.result.currentProjectStatusMap.currentProjectStatusTotal : 0
|
||||
}
|
||||
}
|
||||
})
|
||||
},
|
||||
@@ -125,8 +126,8 @@
|
||||
let query = {
|
||||
title: params.seriesName,
|
||||
projectLibraryId: this.$route.query.id,
|
||||
operatorType:'queryCurrentProjectStatusStatistics',
|
||||
conditionAssessment:params.data.value
|
||||
operatorType: 'queryCurrentProjectStatusStatistics',
|
||||
conditionAssessment: params.data.value
|
||||
}
|
||||
this.$refs.responsibilityListRef.getData(query)
|
||||
})
|
||||
@@ -135,6 +136,7 @@
|
||||
let data = []
|
||||
let color = []
|
||||
if (dataSource && dataSource.length > 0) {
|
||||
this.dataSource = [{}]
|
||||
dataSource.forEach(res => {
|
||||
if (res.color == '4') {
|
||||
data.push({
|
||||
|
||||
Reference in New Issue
Block a user