From cd399357be79a1330ddc704fae29aed4efa95ae0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=8A=B1=E6=9C=89=E6=B8=85=E9=A6=99=E6=9C=88=E6=9C=89?= =?UTF-8?q?=E9=98=B4?= <185154740@qq.com> Date: Thu, 6 Jan 2022 18:26:54 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8B=92=E7=BB=9D=E6=88=90=E5=8A=9F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/apps/AppHandSnapshot/Content.vue | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/apps/AppHandSnapshot/Content.vue b/src/apps/AppHandSnapshot/Content.vue index d0d98830..5e801ca9 100644 --- a/src/apps/AppHandSnapshot/Content.vue +++ b/src/apps/AppHandSnapshot/Content.vue @@ -77,13 +77,13 @@ export default { this.$refs.uForm.validate((valid) => { if (valid) { - if (this.number == 3) { + if (this.number == 2 || this.number == 3) { if (!this.forms.groupName) { return this.$u.toast('请选择事件分类') } if (!this.forms.content) { - return this.$u.toast('请输入办结意见') + return this.$u.toast(this.number == 2 ? '请输入拒绝受理意见' : '请输入你的办结意见') } } @@ -96,7 +96,7 @@ export default { this.flag = true this.$http - .post(`/app/appclapeventinfo/finishByGirdMember`, { + .post(this.number == 2 ? '/app/appclapeventinfo/finishByGirdMember' : '/app/appclapeventinfo/finishByManager', { groupName: this.forms.groupName, groupId: this.forms.groupId, content: this.forms.content, @@ -105,7 +105,7 @@ export default { }) .then((res) => { if (res.code == 0) { - this.$u.toast('发布成功') + this.$u.toast('受理成功') this.flag = false uni.$emit('nextList') setTimeout(() => {