Browse Source

分类统计

preview
jiangyy 4 years ago
parent
commit
0fae5703a2
  1. 6
      epmet-oper-web/src/views/modules/workPc/projectClassifyStatic/classifyList.vue
  2. 7
      epmet-oper-web/src/views/modules/workPc/projectClassifyStatic/projectList.vue

6
epmet-oper-web/src/views/modules/workPc/projectClassifyStatic/classifyList.vue

@ -256,7 +256,7 @@ export default {
this.$refs.ref_projectList.loadDate(this.tableParams, this.staticType, this.timeArray, this.endTimeModel, this.startTimeShow, this.endTimeShow)
//
this.$refs.ref_projectList.initTable(this.agencyIdArray, row, type, this.casOptions)
this.$refs.ref_projectList.initTable(this.agencyIdArray, row, type, this.casOptions, this.selAgencyObj.agencyName)
})
},
@ -348,9 +348,9 @@ export default {
if (this.staticType === 'Interval') {
title = title + ' ' + this.startTimeShow + '-' + this.endTimeShow + '区间增长值'
title = title + ' 分类 ' + this.startTimeShow + '-' + this.endTimeShow + '区间增长值'
} else {
title = title + ' 截止至' + this.endTimeShow + '累计值'
title = title + ' 分类 截止至' + this.endTimeShow + '累计值'
}
console.log(title)

7
epmet-oper-web/src/views/modules/workPc/projectClassifyStatic/projectList.vue

@ -229,7 +229,7 @@ export default {
},
async initTable (agencyIdArray, row, type, casOptions) {
async initTable (agencyIdArray, row, type, casOptions, agencyName) {
this.startLoading()
//
@ -241,6 +241,7 @@ export default {
this.categoryName = row.categoryName
this.parentCategoryName = row.parentCategoryName
this.agencyIdArray = agencyIdArray
this.agencyName = agencyName
await this.loadTable()//
@ -381,9 +382,9 @@ export default {
let title = this.agencyName
if (this.staticType === 'Interval') {
title = title + ' ' + this.startTimeShow + '-' + this.endTimeShow + '区间增长值'
title = title + ' 项目 ' + this.startTimeShow + '-' + this.endTimeShow + '区间增长值'
} else {
title = title + ' 截止至' + this.endTimeShow + '累计值'
title = title + ' 项目 截止至' + this.endTimeShow + '累计值'
}
console.log(title)
const params = {

Loading…
Cancel
Save