From 5569ff5c185797bb159ea2c58a52a92815e18db9 Mon Sep 17 00:00:00 2001
From: ludc
Date: 星期二, 13 六月 2023 19:51:16 +0800
Subject: [PATCH] code服务添加租户相关内容,角色配置界面修改

---
 Source/UBCS-WEB/src/views/system/user.vue |   31 ++++++++++++++-----------------
 1 files changed, 14 insertions(+), 17 deletions(-)

diff --git a/Source/UBCS-WEB/src/views/system/user.vue b/Source/UBCS-WEB/src/views/system/user.vue
index 390e11b..dc8e091 100644
--- a/Source/UBCS-WEB/src/views/system/user.vue
+++ b/Source/UBCS-WEB/src/views/system/user.vue
@@ -104,18 +104,17 @@
         </avue-crud>
         </div>
         <el-dialog :visible.sync="roleBox"
-                   append-to-body
-                   title="鐢ㄦ埛瑙掕壊閰嶇疆"
-                   width="345px">
-
+            append-to-body
+            title="鐢ㄦ埛瑙掕壊閰嶇疆"
+            width="345px">
           <el-tree ref="treeRole"
-                   :data="roleGrantList"
-                   :default-checked-keys="roleTreeObj"
-                   :props="props"
-                   check-strictly
-                   default-expand-all
-                   node-key="id"
-                   show-checkbox>
+              :data="roleGrantList"
+              :default-checked-keys="roleTreeObj"
+              :props="props"
+              check-strictly
+              default-expand-all
+              node-key="id"
+              show-checkbox>
           </el-tree>
 
           <span slot="footer" class="dialog-footer">
@@ -779,11 +778,10 @@
       })
        //瑕佷紶閫掔殑id锛屼竴涓槸鏁扮粍鍙︿竴涓槸瀛楃涓�
        this.UserPwdstrategyVO.userIds=this.selid;
-       this.UserPwdstrategyVO.pwdstrategyId=this.id
-      console.log("1",this.UserPwdstrategyVO)
-      console.log("2",this.UserPwdstrategyVO.userIds)
+       this.UserPwdstrategyVO.pwdstrategyId=this.id;
+
       //璇锋眰
-      insert(this.UserPwdstrategyVO.userIds).then(()=>{
+      insert(this.UserPwdstrategyVO).then(()=>{
         this.passVisible=false
         this.$message({
           type: "success",
@@ -970,10 +968,9 @@
       if (this.selectionList.length === 1) {
         this.roleTreeObj = this.selectionList[0].roleId.split(",");
       }
-      getRoleTree().then(res => {
+      getRoleTree(this.selectionList[0].tenantId).then(res => {
         this.roleGrantList = res.data.data;
         this.roleBox = true;
-
       });
     },
     handlePlatform() {

--
Gitblit v1.9.3