diff --git a/jero-web/src/common/lang/zh-cn.js b/jero-web/src/common/lang/zh-cn.js index 386249c0e..2a33529fb 100644 --- a/jero-web/src/common/lang/zh-cn.js +++ b/jero-web/src/common/lang/zh-cn.js @@ -614,7 +614,7 @@ module.exports = { certificationProgramInformation: '认证计划信息', taskReleaseStatus: '认证发布状态', task: '任务', - TaskCutOffTime: '任务截止时间', + TaskCutOffTime: '截止时间', Transfer: '调取', CertificationDirectory: '认证目录', TaskRequirements: '任务要求', diff --git a/jero-web/src/views/processCenter/processForm/taskListProcess/index.vue b/jero-web/src/views/processCenter/processForm/taskListProcess/index.vue index b785addd4..55ca8b339 100644 --- a/jero-web/src/views/processCenter/processForm/taskListProcess/index.vue +++ b/jero-web/src/views/processCenter/processForm/taskListProcess/index.vue @@ -184,9 +184,15 @@ }, mounted() { let _this = this - this.queryTaskDetailByTask(function() { - _this.queryProjectLawsInventoryInfo() - }) + if (this.$route.query.taskIds) { + this.queryTaskDetailByTask(function() { + _this.queryProjectLawsInventoryInfo() + }) + } else { + this.queryBy.projectLibraryId = this.$route.query.projectLibraryId + this.queryBy.id = this.$route.query.projectTaskInventoryId + this.queryProjectLawsInventoryInfo() + } }, methods: { ...mapGetters(['userInfo']),