|
@@ -52,6 +52,7 @@
|
|
|
<AccountGroupTree
|
|
|
title="上级账号组"
|
|
|
nodekey="GroupId"
|
|
|
+ :check-disabled="doesGroupExist"
|
|
|
:type="true"
|
|
|
:defaultProps="defaultProps"
|
|
|
:checkedKeys="accountGroupTreeCheckedList"
|
|
@@ -66,12 +67,13 @@
|
|
|
<RoleList
|
|
|
title="角色列表"
|
|
|
:roleType="roleType"
|
|
|
- :GroupIds="accountGroupTreeCheckedTemp"
|
|
|
+ :GroupIds="groupIds"
|
|
|
:checkBoxList="roleListCheckedList"
|
|
|
:number="8"
|
|
|
:active="true"
|
|
|
@checkChange="getRoleListChecked"
|
|
|
@checkClick="selectRole"
|
|
|
+ @roleListChange="roleListCheckedChange"
|
|
|
/>
|
|
|
</div>
|
|
|
</el-col>
|
|
@@ -95,7 +97,7 @@
|
|
|
title="权限树"
|
|
|
:checkedKeys="permissionTreeChckedKeys"
|
|
|
:queryType="queryType"
|
|
|
- :queryIds="accountGroupTreeCheckedTemp"
|
|
|
+ :queryIds="queryIds"
|
|
|
@getTreeData="getPermissionTreeChecked"
|
|
|
/>
|
|
|
</div>
|
|
@@ -169,6 +171,8 @@ export default {
|
|
|
rulesOfCompetency: null, // 当前编辑的权限规则
|
|
|
queryType: '',
|
|
|
roleType: '',
|
|
|
+ groupIds: [],
|
|
|
+ queryIds: [],
|
|
|
currentSelectedRoleId: 0,
|
|
|
checkedRoles: [],
|
|
|
editForm: {
|
|
@@ -193,7 +197,6 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
created() {
|
|
|
- console.log(typeof this.GroupUpId)
|
|
|
let obj
|
|
|
if (typeof this.systemSet === 'string') {
|
|
|
obj = JSON.parse(this.systemSet)
|
|
@@ -203,15 +206,17 @@ export default {
|
|
|
// console.log(obj)
|
|
|
const { OpenRole } = obj
|
|
|
this.openRole = OpenRole
|
|
|
- this.queryType = this.GroupUpId === -1 ? 'all' : 'group'
|
|
|
this.accountGroupTreeCheckedTemp = [this.GroupUpId]
|
|
|
+ this.groupIds.push(this.GroupUpId)
|
|
|
+ this.queryIds.push(this.GroupUpId)
|
|
|
},
|
|
|
mounted() {
|
|
|
- this.roleType = this.GroupUpId === -1 ? 'onlyRole' : 'roleByUpId'
|
|
|
- this.accountGroupTreeCheckedList = [this.GroupUpId]
|
|
|
if (this.doesGroupExist) {
|
|
|
this.GroupId = this.$route.query.GroupId
|
|
|
this.getGroupDetails()
|
|
|
+ } else {
|
|
|
+ this.roleType = 'onlyRole'
|
|
|
+ this.queryType = 'all'
|
|
|
}
|
|
|
},
|
|
|
methods: {
|
|
@@ -231,7 +236,7 @@ export default {
|
|
|
RoleList &&
|
|
|
RoleList.length &&
|
|
|
RoleList.forEach(role => {
|
|
|
- role.IsSelected && (this.roleListCheckedList.push(role.RoleId), this.roleListCheckedTemp.push(role))
|
|
|
+ role.IsSelected && this.roleListCheckedTemp.push(role)
|
|
|
})
|
|
|
|
|
|
AuthList &&
|
|
@@ -240,6 +245,8 @@ export default {
|
|
|
this.permissionTreeChckedKeys.push(auth.AuthId)
|
|
|
this.permissionTreeChckedTemp.push(auth)
|
|
|
})
|
|
|
+ this.roleType = this.GroupUpId === -1 ? 'onlyRole' : 'roleByUpId'
|
|
|
+ this.queryType = this.GroupUpId === -1 ? 'all' : 'group'
|
|
|
} else {
|
|
|
this.$message.error(res.message)
|
|
|
}
|
|
@@ -266,20 +273,33 @@ export default {
|
|
|
// 获取当前勾选的账号组
|
|
|
getAccountGroupChecked(arr) {
|
|
|
if (arr && arr.length && arr[0] !== -1) {
|
|
|
- this.queryType = 'group'
|
|
|
+ const GroupIds = arr.map(item => item.GroupId)
|
|
|
+ this.accountGroupTreeCheckedTemp = GroupIds
|
|
|
this.roleType = 'roleByUpId'
|
|
|
- const GroupUpId = arr[0].GroupId
|
|
|
- this.accountGroupTreeCheckedTemp = [GroupUpId]
|
|
|
+ this.groupIds = GroupIds
|
|
|
+ this.queryType = 'group'
|
|
|
+ this.queryIds = GroupIds
|
|
|
} else {
|
|
|
- this.queryType = 'all'
|
|
|
- this.roleType = 'onlyRole'
|
|
|
this.accountGroupTreeCheckedTemp = [-1]
|
|
|
+ this.roleType = 'onlyRole'
|
|
|
+ this.queryType = 'all'
|
|
|
}
|
|
|
},
|
|
|
// 角色选取
|
|
|
getRoleListChecked(arr) {
|
|
|
this.roleListCheckedTemp = arr
|
|
|
},
|
|
|
+ roleListCheckedChange(arr) {
|
|
|
+ console.log(arr)
|
|
|
+ if (arr && arr.length) {
|
|
|
+ this.roleListCheckedTemp = this.roleListCheckedTemp.filter(role =>
|
|
|
+ arr.some(data => data.RoleId === role.RoleId)
|
|
|
+ )
|
|
|
+ } else {
|
|
|
+ this.roleListCheckedTemp = []
|
|
|
+ }
|
|
|
+ this.roleListCheckedList = this.roleListCheckedTemp.map(role => role.RoleId)
|
|
|
+ },
|
|
|
// 获取当前编辑的权限规则
|
|
|
getRulesOfCompetency(obj) {
|
|
|
this.rulesOfCompetency = obj
|