zhaoke 3 年 前
コミット
7518fb86e3

+ 2 - 2
src/components/permissionlist/index.vue

@@ -141,12 +141,12 @@ export default {
     },
     upActive (item, index) {
       this.active = index
-      this.RoleData = this.getData(item.AuthId)
+      this.RoleData = this.getData(item.AppId)
     },
     getData (id) {
       const datas = []
       this.RoleList.forEach(item => {
-        if (item.AuthId === id) {
+        if (item.AppId === id) {
           datas.push(item)
         }
       })

+ 6 - 1
src/views/staffManagement/compontents/staffAdd.vue

@@ -1,7 +1,7 @@
 <!--
  * @Author: your name
  * @Date: 2022-02-10 14:49:20
- * @LastEditTime: 2022-02-16 14:09:48
+ * @LastEditTime: 2022-02-16 14:35:13
  * @LastEditors: Please set LastEditors
  * @Description: 编辑职员
  * @FilePath: \Foshan4A4.0\src\views\staffManagement\compontents\staffEdit.vue
@@ -240,6 +240,11 @@ export default {
       this.queryType = "all";
     }
   },
+  mounted () {
+    if (this.openRole) {
+      this.roleType = 'onlyRole';
+    }
+  },
   methods: {
     //获取选中的树数据
     getTreeData (arr) {