From bf930c392b0c41e1b81766bad690400264bd815f Mon Sep 17 00:00:00 2001 From: konbai <1527468660@qq.com> Date: Sat, 24 Dec 2022 02:13:54 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E6=B5=81=E7=A8=8B=E8=AE=BE=E8=AE=A1):=20?= =?UTF-8?q?=E4=BF=AE=E5=A4=8D=20=E4=BF=9D=E5=AD=98=E6=B5=81=E7=A8=8B?= =?UTF-8?q?=E8=AE=BE=E8=AE=A1=E5=A4=B1=E8=B4=A5=E5=A4=9A=E4=BD=99=E7=9A=84?= =?UTF-8?q?=E9=94=99=E8=AF=AF=E6=8F=90=E7=A4=BA=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ruoyi-ui/src/views/workflow/model/index.vue | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/ruoyi-ui/src/views/workflow/model/index.vue b/ruoyi-ui/src/views/workflow/model/index.vue index 933b9071..40b35d66 100644 --- a/ruoyi-ui/src/views/workflow/model/index.vue +++ b/ruoyi-ui/src/views/workflow/model/index.vue @@ -576,12 +576,10 @@ export default { this.designerData.loading = true; saveModel(Object.assign(body, { newVersion: newVersion - })).then(res => { - this.$modal.msgSuccess(res.msg) + })).then(() => { this.designerOpen = false; this.getList(); - }).catch(res => { - this.$modal.msgError(res.msg) + }).finally(() => { this.designerData.loading = false; }) },