From b7713ca47efe657829f19861882498d127e0dd9f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B5=B5=E9=9C=84?= Date: Sun, 4 Feb 2024 10:03:37 +0800 Subject: [PATCH] =?UTF-8?q?fix=20=E9=87=87=E8=B4=AD=E6=B5=81=E7=A8=8B?= =?UTF-8?q?=E4=BF=9D=E5=AD=98=E4=BC=A0id?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../standardProcurementProcess/StandardProcurementProcess.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/workCenter/standardProcurementProcess/StandardProcurementProcess.vue b/src/views/workCenter/standardProcurementProcess/StandardProcurementProcess.vue index 3569fe37..e4391098 100644 --- a/src/views/workCenter/standardProcurementProcess/StandardProcurementProcess.vue +++ b/src/views/workCenter/standardProcurementProcess/StandardProcurementProcess.vue @@ -374,7 +374,7 @@ export default { approvalInfo.taskId = approvalInfo.taskId || this.$route.query.taskId approvalInfo.finishFlag = 1 // 保存——1;提交/同意/驳回——2 userInfoMap = this.$refs.personnelInfo.getDataObj() - const params = { ...processInfo, ...businessInfo, ...approvalInfo, ...userInfoMap } + const params = { ...processInfo, ...businessInfo, ...approvalInfo, ...userInfoMap, draftId: this.$route.query.draftId } if (!Object.values(params).some(tt => !!tt || (tt && tt.length > 0))) { // 提示至少填写一项 this.$message.warning(this.$t('pleaseFillInAtLeastOneItem'))