Browse Source

项目分类

dev
jiangyy 4 years ago
parent
commit
003c4d1e3f
  1. 16
      epmet-oper-web/src/views/modules/workPc/projectClassifyStatic/projectList.vue

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

@ -183,6 +183,9 @@ export default {
}
},
staticType: 'end',
categoryName: '',
parentCategoryName: '',
tableParams: {
status: '', //closedall
categoryCode: '', //code
@ -221,6 +224,8 @@ export default {
this.tableParams.status = type
this.tableParams.categoryCode = row.categoryCode
this.categoryName = row.categoryName
this.parentCategoryName = row.parentCategoryName
this.agencyIdArray = agencyIdArray
this.selAgencyObj = selAgencyObj
this.tableParams.orgId = this.selAgencyObj.agencyId
@ -369,12 +374,21 @@ export default {
title = title + ' 截止至' + this.endTimeShow + '累计值'
}
console.log(title)
const params = {
status: this.tableParams.status,
categoryCode: this.tableParams.categoryCode,
categoryName: this.categoryName,
orgId: this.tableParams.orgId,
startTime: this.tableParams.startTime,
endTime: this.tableParams.endTime,
parentCategoryName: this.parentCategoryName,
}
const url = "/data/report/screen/project/selectcategoryprojectlist/export"
app.ajax.exportFilePost(
url,
this.tableParams,
params,
(data, rspMsg) => {
this.download(data, title + '.xls')

Loading…
Cancel
Save