From f003bbad9599f5d90218cb8851d864cbaa1d8ac4 Mon Sep 17 00:00:00 2001 From: "[li_she]" <[li.she@xujiesoft.com]> Date: Thu, 9 Jun 2022 10:16:49 +0800 Subject: [PATCH] =?UTF-8?q?=E7=94=A8=E6=88=B7=E5=88=86=E9=A1=B5=202022-06-?= =?UTF-8?q?09=20sxm?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/modules/sys/user.vue | 66 ++++++++++++++++++++++++---------- 1 file changed, 48 insertions(+), 18 deletions(-) diff --git a/src/views/modules/sys/user.vue b/src/views/modules/sys/user.vue index e857547..6368527 100644 --- a/src/views/modules/sys/user.vue +++ b/src/views/modules/sys/user.vue @@ -95,8 +95,8 @@ + :visible.sync="setUp.reviewFlag" width="518px"> - 取消 - 确定 +
+ 确定 + 取消 +
@@ -160,12 +162,15 @@ v-drag :title="'工厂授权'" :visible.sync="siteVisible" - width="520px" + width="518px" :append-to-body="true"> - 确定 - 取消 +
+ 确定 + 取消 +
+
@@ -308,7 +313,7 @@ export default { }, // 保存用户权限 saveUserSecurity() { - let securityList = JSON.parse(JSON.stringify(this.securityList)).map(item => { + let securityList = JSON.parse(JSON.stringify(this.securityList)).map(item => { item.itemvalue = item.itemvalue === true ? 'Y' : 'N'; return item; }) @@ -316,7 +321,7 @@ export default { if (data.code === 0) { this.$message.success(data.msg) this.specialVisible = false - }else { + } else { this.$message.success(data.msg) } }) @@ -509,17 +514,42 @@ export default { } } -