From 1aefaa8e00c4c8aed03830b0b971888844a80142 Mon Sep 17 00:00:00 2001 From: liujun Date: Wed, 31 Jan 2024 14:08:31 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=81=E4=B8=9A=E7=AB=AF=E3=80=81=E4=BC=81?= =?UTF-8?q?=E4=B8=9A=E7=AB=AF=E4=BE=BF=E8=B7=9F=E4=BC=81=E4=B8=9A=E4=BF=A1?= =?UTF-8?q?=E6=81=AF=E6=97=B6=E6=9C=AA=E6=B8=85=E7=A9=BA=E4=BB=A5=E9=80=89?= =?UTF-8?q?=E4=BF=A1=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/xgf/flow/components/sendUtil.vue | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/src/views/xgf/flow/components/sendUtil.vue b/src/views/xgf/flow/components/sendUtil.vue index c3f41b4..61dc14e 100644 --- a/src/views/xgf/flow/components/sendUtil.vue +++ b/src/views/xgf/flow/components/sendUtil.vue @@ -5,7 +5,7 @@ - + @@ -194,6 +194,7 @@ export default { } ).then((data) => { this.peopleList = data.userList + this.form.user = '' }).catch((e) => { console.log(e) }) @@ -205,6 +206,7 @@ export default { } ).then((data) => { this.peopleList = data.userList + this.form.user = '' }).catch((e) => { console.log(e) }) @@ -242,6 +244,14 @@ export default { list: [], tm: new Date().getTime() } + }, + clearInfo() { + this.form.APPOINT_DEPARTMENT_ID = null + this.form.APPOINT_DEPARTMENT_NAME = '' + this.form.APPOINT_USER_ID = null + this.form.APPOINT_USER_NAME = '' + this.form.OPINION = '' + this.form.user = '' } } }