From 63569ba19b98beb7c4249ae9e334c68691b05492 Mon Sep 17 00:00:00 2001 From: liujun Date: Thu, 18 Apr 2024 17:41:03 +0800 Subject: [PATCH] =?UTF-8?q?15180=20=E5=A7=94=E6=89=98=E5=AE=8C=E4=B8=80?= =?UTF-8?q?=E4=B8=AA=E5=90=8E=20=E5=A7=94=E6=89=98=E4=B8=8B=E4=B8=80?= =?UTF-8?q?=E4=B8=AA=20=E4=B8=8A=E4=B8=80=E4=B8=AA=E5=A7=94=E6=89=98?= =?UTF-8?q?=E4=BF=A1=E6=81=AF=E4=BC=9A=E8=A2=AB=E5=B8=A6=E5=87=BA=20?= =?UTF-8?q?=E6=89=B9=E9=87=8F=E5=A7=94=E6=89=98=E4=B9=9F=E6=98=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/xgf/flow/components/entrust.vue | 25 +++++++++++++++++------ 1 file changed, 19 insertions(+), 6 deletions(-) diff --git a/src/views/xgf/flow/components/entrust.vue b/src/views/xgf/flow/components/entrust.vue index c532295..e169e6a 100644 --- a/src/views/xgf/flow/components/entrust.vue +++ b/src/views/xgf/flow/components/entrust.vue @@ -140,6 +140,7 @@ export default { this.$message.success('推送成功') this.visible = false this.$emit('refresh', '') + this.beforeClose() }) .catch((e) => { console.log(e) @@ -182,28 +183,40 @@ export default { handleClose() { this.form = { - STATUS: '', + STATUS: '1', + APPOINT_CORP_ID: '', + APPOINT_CORP_NAME: '', APPOINT_DEPARTMENT_ID: null, APPOINT_DEPARTMENT_NAME: '', - APPOINT_USER_ID: '', + APPOINT_USER_ID: null, APPOINT_USER_NAME: '', + OPINION: '', user: '', + tm: new Date().getTime(), list: [], - tm: new Date().getTime() + isShow: true, + info: {}, + entrustFlag: '1' } this.visible = false }, beforeClose() { this.visible = false this.form = { - STATUS: '', + STATUS: '1', + APPOINT_CORP_ID: '', + APPOINT_CORP_NAME: '', APPOINT_DEPARTMENT_ID: null, APPOINT_DEPARTMENT_NAME: '', - APPOINT_USER_ID: '', + APPOINT_USER_ID: null, APPOINT_USER_NAME: '', + OPINION: '', user: '', + tm: new Date().getTime(), list: [], - tm: new Date().getTime() + isShow: true, + info: {}, + entrustFlag: '1' } } }