diff --git a/src/views/modules/base/smartExcel/cpts/excel-info.vue b/src/views/modules/base/smartExcel/cpts/excel-info.vue index bf741fcca..dcad6f170 100644 --- a/src/views/modules/base/smartExcel/cpts/excel-info.vue +++ b/src/views/modules/base/smartExcel/cpts/excel-info.vue @@ -182,6 +182,7 @@ export default { ...mapGetters(['clientHeight', 'resolution']), }, props: { + taskId: { type: String, default: "" diff --git a/src/views/modules/base/smartExcel/cpts/excel-summary.vue b/src/views/modules/base/smartExcel/cpts/excel-summary.vue index ee2ed3b56..a96195d85 100644 --- a/src/views/modules/base/smartExcel/cpts/excel-summary.vue +++ b/src/views/modules/base/smartExcel/cpts/excel-summary.vue @@ -82,14 +82,16 @@ export default { this.$emit('close') }, handleClickShowView(val){ - const { id, taskId, taskTitle, taskPeriod, taskType, taskIntroduction,subWorkBookId,workBookId } = val; + const { id, taskId, taskTitle, taskPeriod, taskType, taskIntroduction,subWorkBookId,workBookId,taskStateName} = val; this.$store.state.sidebarFold = true; this.showView = true; this.sheetTotal = false this.workbookId = val.taskId; this.userId = val.userId; this.infoObj = { id, taskId, taskTitle, taskPeriod, taskType, taskIntroduction}; - this.mergeObj = {subWorkBookId,workBookId } + this.mergeObj = {subWorkBookId,workBookId,taskStateName } + this.taskStateName=val.taskStateName + }, handleClickShowViewAll(val){ this.$store.state.sidebarFold = true; diff --git a/src/views/modules/base/smartExcel/cpts/excel-view.vue b/src/views/modules/base/smartExcel/cpts/excel-view.vue index d5624b46d..79094db7f 100644 --- a/src/views/modules/base/smartExcel/cpts/excel-view.vue +++ b/src/views/modules/base/smartExcel/cpts/excel-view.vue @@ -25,9 +25,9 @@