From 863db1b9dce7506c9e338bb7620d10a74cf77ab5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AE=8B=E4=BC=9F=E4=BD=B3?= <2797716443@qq.com> Date: Fri, 8 Apr 2022 09:27:02 +0800 Subject: [PATCH] =?UTF-8?q?52439=20=E4=BC=81=E6=A0=87=E5=88=B6=E4=BF=AE?= =?UTF-8?q?=E8=AE=A2=E8=AE=A1=E5=88=92=E7=AE=A1=E6=8E=A7=20=E4=BF=9D?= =?UTF-8?q?=E5=AD=98=E8=87=B3=E8=8D=89=E7=A8=BF=EF=BC=8C=E5=86=8D=E4=BB=8E?= =?UTF-8?q?=E8=8D=89=E7=A8=BF=E5=86=8D=E7=82=B9=E5=87=BB=E4=BF=9D=E5=AD=98?= =?UTF-8?q?=EF=BC=8C=E4=BC=9A=E7=94=9F=E6=88=90=E5=A4=9A=E6=9D=A1=E6=95=B0?= =?UTF-8?q?=E6=8D=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../processCenter/pages/creatProcess/qbzxdjhgk/step1.vue | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/pages/processCenter/pages/creatProcess/qbzxdjhgk/step1.vue b/src/pages/processCenter/pages/creatProcess/qbzxdjhgk/step1.vue index 7c4f27e3f..8654b9422 100644 --- a/src/pages/processCenter/pages/creatProcess/qbzxdjhgk/step1.vue +++ b/src/pages/processCenter/pages/creatProcess/qbzxdjhgk/step1.vue @@ -283,7 +283,6 @@ export default { qbfsForm: {}, formLoading: false, approvalFlag: false, - saveFlag: false, showFlag: true, taskIds: '', bpnId: '', @@ -334,7 +333,6 @@ export default { this.taskIds = this.$route.query.taskIds this.bpnId = this.$route.query.bpnId if (this.bpnId !== undefined) { - this.saveFlag = true this.getData() } if(this.taskIds){ @@ -443,7 +441,7 @@ export default { }, //流程保存 handleSave() { - if(this.approvalFlag || this.saveFlag){ + if(this.approvalFlag){ //被驳回后的保存 this.saveLoading = true; let qbzxdFrom = this.$refs["childForm"].qbfsForm; @@ -472,6 +470,7 @@ export default { qbzxdFrom.type = this.toggleType this.saveLoading = true let _formData = new FormData() + _formData.append("id", this.bpnId || ""); _formData.append('createUser', this.$store.getters.userInfo.userId) _formData.append('createUserName', this.$store.getters.userInfo.userName) _formData.append('prcType', '25')