From 4e4e6e1f862c5a8e20972d8264780090920040dc Mon Sep 17 00:00:00 2001 From: wangwei <1610949092@qq.com> Date: Wed, 7 Jun 2023 09:05:35 +0800 Subject: [PATCH 1/3] =?UTF-8?q?bug=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/userManage/registerManage.vue | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/views/userManage/registerManage.vue b/src/views/userManage/registerManage.vue index 7a697bd..898db00 100644 --- a/src/views/userManage/registerManage.vue +++ b/src/views/userManage/registerManage.vue @@ -248,6 +248,7 @@ :visible.sync="centerDialogVisible" :close-on-click-modal="false" :close-on-press-escape="false" + :before-close="Refresh" width="60%" center > @@ -593,6 +594,11 @@ export default { this.filterQuery.page = 1; this.getList(); }, + Refresh(){ + this.centerDialogVisible=false; + this.getList(); + }, + getList() { this.loading = true; selectReslist(this.filterQuery) @@ -795,7 +801,7 @@ export default { type: "success", message: "审核成功!", }); - this.centerDialogVisible = false; + this.Refresh(); }else{ this.$message.error(res.message); } From 254d607fe27e9b90cbb57bba9a0ef67a33d7ed37 Mon Sep 17 00:00:00 2001 From: 1178634255 <1178634255@qq.com> Date: Wed, 7 Jun 2023 09:58:56 +0800 Subject: [PATCH 2/3] =?UTF-8?q?=E4=BB=A3=E7=A0=81=E5=A4=87=E4=BB=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/udi/trace/manu/index.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/udi/trace/manu/index.vue b/src/views/udi/trace/manu/index.vue index 286379a..5c3d704 100644 --- a/src/views/udi/trace/manu/index.vue +++ b/src/views/udi/trace/manu/index.vue @@ -261,7 +261,7 @@ - 单据 {{ currentRow == null ? '' : currentRow.billNo }}-业务扫码校验结果 + 单据 {{ currentRow == null ? '' : currentRow.billNo }}-业务详情 From 161888a77f3bce7e51ee09056a8ba3e660b6018f Mon Sep 17 00:00:00 2001 From: 1178634255 <1178634255@qq.com> Date: Wed, 7 Jun 2023 10:47:43 +0800 Subject: [PATCH 3/3] =?UTF-8?q?=E6=8E=A5=E5=8F=A3=E8=8F=9C=E5=8D=95?= =?UTF-8?q?=E6=96=B0=E5=A2=9E=E7=BC=96=E8=BE=91=E7=95=8C=E9=9D=A2=E4=BF=AE?= =?UTF-8?q?=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/system/license/license.vue | 133 +++++++++++++++++++++++++-- 1 file changed, 123 insertions(+), 10 deletions(-) diff --git a/src/views/system/license/license.vue b/src/views/system/license/license.vue index 900aea3..f0f3074 100644 --- a/src/views/system/license/license.vue +++ b/src/views/system/license/license.vue @@ -62,7 +62,7 @@ 新增 + >新增接口分类 @@ -77,7 +77,7 @@ - + @@ -356,6 +419,7 @@ export default { subData: {}, formName: null, subFormVisible: false, + subFormVisible1: false, showSearch: true, currentRow: null, filterQuery: { @@ -599,13 +663,13 @@ export default { this.formName = formName; this.check = row; this.subData = row; - this.subFormVisible = true; + this.subFormVisible1 = true; }, reviewOrder(row, formName) { this.formName = formName; this.check = row; this.subData = row; - this.subFormVisible = true; + this.subFormVisible1 = true; }, @@ -613,17 +677,66 @@ export default { this.formName = formName; this.check = row; this.subData = {}; - this.subFormVisible = true; + this.subFormVisible1 = true; }, add(data, formName) { - this.subFormVisible = true; - this.subData = {}; this.formName = formName; + this.subData = {}; this.check = data; + this.subFormVisible = true; }, hideForm() { this.subFormVisible = false; + }, + hideForm1() { + this.subFormVisible1 = false; + }, + forInvSubmit1() { + if (this.formName === "add" && this.check == null) { + //新增接口分类 + this.subData.parentId = 0; + insertLicense(this.subData) + .then((res) => { + if (res.code == 20000) { + this.$message.success("添加成功!") + this.subFormVisible1 = false; + this.getList(); + } + }) + } else if (this.formName === "add" && this.check != null) { + //新增子接口 + this.subData.parentId = this.check.id; + insertLicense(this.subData) + .then((res) => { + if (res.code == 20000) { + this.$message.success("添加成功!") + this.subFormVisible1 = false; + this.getList(); + } + }) + } else if (this.formName === "edit" && this.check.parentId == 0) { + //编辑接口分类 + updateLicense(this.subData).then((res) => { + if (res.code == 20000) { + this.$message.success("修改成功!") + this.subFormVisible1 = false; + this.getList(); + } + }) + } else { + updateLicense(this.subData).then((res) => { + if (res.code == 20000) { + this.$message.success("修改成功!") + this.subFormVisible1 = false; + this.getlower(); + } + + }) + + } + + }, forInvSubmit() { if (this.formName === "add" && this.check == null) {