|
@@ -21,7 +21,7 @@
|
|
|
<button
|
|
|
type="submmit"
|
|
|
class="saveBtn"
|
|
|
- @click="editAcc"
|
|
|
+ @click="saveEdit"
|
|
|
>保存</button>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -61,7 +61,7 @@
|
|
|
<el-button
|
|
|
class="resetPass"
|
|
|
size="small"
|
|
|
- @click="rest"
|
|
|
+ @click="resetPwd"
|
|
|
>重置密码</el-button>
|
|
|
</el-col>
|
|
|
<el-col :span="8">
|
|
@@ -85,20 +85,17 @@
|
|
|
<div class="content">
|
|
|
<!-- 用户组和角色未开启 -->
|
|
|
<el-row
|
|
|
- v-if="
|
|
|
- systemSetuser.OpenRole === 0
|
|
|
- && systemSetuser.OpenGroup === 0
|
|
|
- "
|
|
|
+ v-if="!openGroup && !openRole"
|
|
|
:gutter="24"
|
|
|
>
|
|
|
<el-col :span="8">
|
|
|
<div class="part">
|
|
|
<PermissionTree
|
|
|
title="权限树"
|
|
|
- :checked-keys="powerT"
|
|
|
+ :checked-keys="permissionTreeChckedKeys"
|
|
|
:query-type="group"
|
|
|
:query-id="objID"
|
|
|
- @get-tree-data="getTreeDatas"
|
|
|
+ @get-tree-data="getPermissionTreeData"
|
|
|
/>
|
|
|
</div>
|
|
|
</el-col>
|
|
@@ -106,7 +103,7 @@
|
|
|
<div class="part">
|
|
|
<RulesOfCompetency
|
|
|
title="权限规则"
|
|
|
- @get-data="getData"
|
|
|
+ @get-data="getRulesData"
|
|
|
/>
|
|
|
</div>
|
|
|
</el-col>
|
|
@@ -121,22 +118,18 @@
|
|
|
</el-row>
|
|
|
<!-- 角色和用户组都开启 -->
|
|
|
<el-row
|
|
|
- v-if="
|
|
|
- systemSetuser.OpenRole !== 0
|
|
|
- && systemSetuser.OpenGroup !== 0
|
|
|
- "
|
|
|
+ v-if="openGroup && openRole"
|
|
|
:gutter="24"
|
|
|
>
|
|
|
<el-col :span="8">
|
|
|
<div class="part">
|
|
|
<Organization
|
|
|
title="所属账号组"
|
|
|
- :data="data"
|
|
|
+ :data="groupList"
|
|
|
:default-props="defaultProps"
|
|
|
:nodekey="'GroupId'"
|
|
|
:checked-id-list="checkedIdList"
|
|
|
- @get-checked-data="getTreeData"
|
|
|
- @click="getId(arrs)"
|
|
|
+ @get-tree-data="getGroupTreeData"
|
|
|
/>
|
|
|
</div>
|
|
|
</el-col>
|
|
@@ -172,33 +165,29 @@
|
|
|
</el-row>
|
|
|
<!-- 只开启用户组 -->
|
|
|
<el-row
|
|
|
- v-if="
|
|
|
- systemSetuser.OpenGroup !== 0
|
|
|
- && systemSetuser.OpenRole === 0
|
|
|
- "
|
|
|
+ v-if="openGroup && !openRole"
|
|
|
:gutter="24"
|
|
|
>
|
|
|
<el-col :span="8">
|
|
|
<div class="part">
|
|
|
<Organization
|
|
|
title="所属账号组"
|
|
|
- :data="data"
|
|
|
+ :data="groupList"
|
|
|
:default-props="defaultProps"
|
|
|
:nodekey="'GroupId'"
|
|
|
:checked-id-list="checkedIdList"
|
|
|
- @get-checked-data="getTreeData"
|
|
|
- @click="getId(arrs)"
|
|
|
+ @get-tree-data="getGroupTreeData"
|
|
|
/>
|
|
|
</div>
|
|
|
</el-col>
|
|
|
<el-col :span="8">
|
|
|
<div class="part">
|
|
|
<PermissionTree
|
|
|
- :checked-keys="powerT"
|
|
|
+ :checked-keys="permissionTreeChckedKeys"
|
|
|
:query-type="group"
|
|
|
:query-id="objID"
|
|
|
title="权限树"
|
|
|
- @get-tree-data="getTreeDatas"
|
|
|
+ @get-tree-data="getPermissionTreeData"
|
|
|
/>
|
|
|
</div>
|
|
|
</el-col>
|
|
@@ -206,7 +195,7 @@
|
|
|
<div class="part2">
|
|
|
<RulesOfCompetency
|
|
|
title="权限规则"
|
|
|
- @get-data="getData"
|
|
|
+ @get-data="getRulesData"
|
|
|
/>
|
|
|
</div>
|
|
|
|
|
@@ -220,10 +209,7 @@
|
|
|
</el-row>
|
|
|
<!-- 只开启角色 -->
|
|
|
<el-row
|
|
|
- v-if="
|
|
|
- systemSetuser.OpenGroup === 0
|
|
|
- && systemSetuser.OpenRole != 0
|
|
|
- "
|
|
|
+ v-if="!openGroup && openRole"
|
|
|
:gutter="24"
|
|
|
>
|
|
|
<el-col :span="8">
|
|
@@ -291,7 +277,7 @@ import {
|
|
|
// import { getUserOne } from '@/api/AccountGroup.js'
|
|
|
// import { mapGetters } from 'vuex'
|
|
|
// import Cookies from "js-cookie";
|
|
|
-import { accDeaitls, deitAcc, GetRoleByGroup } from '@/api/Account.js'
|
|
|
+import { getAccountDetails, editAccount, GetRoleByGroup } from '@/api/Account.js'
|
|
|
export default {
|
|
|
components: {
|
|
|
Organization,
|
|
@@ -304,22 +290,19 @@ export default {
|
|
|
},
|
|
|
data() {
|
|
|
return {
|
|
|
+ appId: 0,
|
|
|
group: 'group',
|
|
|
userId: this.$route.query.userid,
|
|
|
GroupId: this.$route.query.GroupId,
|
|
|
dialogVisible: false,
|
|
|
- OpenRole: this.OpenRole,
|
|
|
- OpenGroup: this.OpenGroup,
|
|
|
- marginB: '20px',
|
|
|
- PageIndex: 1,
|
|
|
- PageSize: 12,
|
|
|
+ openRole: false,
|
|
|
+ openGroup: false,
|
|
|
PwdLengthBegin: null,
|
|
|
PwdLengthEnd: null,
|
|
|
PwdStruc: null,
|
|
|
pwd: null,
|
|
|
- data: [], // 账号组
|
|
|
+ groupList: [], // 账号组
|
|
|
orgId: '',
|
|
|
- arrs: [],
|
|
|
TacList: [], // 登录策略
|
|
|
AuthList: [], // 授权信息
|
|
|
roleList: [], // 角色
|
|
@@ -329,9 +312,9 @@ export default {
|
|
|
checkedIdList: [],
|
|
|
loginList: [], // 选中展示登录策略
|
|
|
checkRole: [],
|
|
|
- CheckedList: [],
|
|
|
+ CheckedList: [], // 登录策略
|
|
|
rulesObj: [],
|
|
|
- powerT: [],
|
|
|
+ permissionTreeChckedKeys: [],
|
|
|
objID: '1',
|
|
|
rules: {
|
|
|
UserName: [
|
|
@@ -354,7 +337,6 @@ export default {
|
|
|
children: 'children',
|
|
|
label: 'GroupName'
|
|
|
},
|
|
|
- systemSetuser: null,
|
|
|
treeData1: [],
|
|
|
checkedAuthList: []
|
|
|
}
|
|
@@ -366,16 +348,16 @@ export default {
|
|
|
} else {
|
|
|
obj = this.$store.state.app.systemSet
|
|
|
}
|
|
|
+ console.log(obj)
|
|
|
const { OpenRole, OpenGroup, PwdStruc, PwdLengthBegin, PwdLengthEnd } = obj
|
|
|
this.openRole = OpenRole
|
|
|
- this.OpenGroup = OpenGroup
|
|
|
+ this.openGroup = OpenGroup
|
|
|
this.PwdStruc = PwdStruc
|
|
|
this.PwdLengthBegin = PwdLengthBegin
|
|
|
this.PwdLengthEnd = PwdLengthEnd
|
|
|
this.editAccInfo()
|
|
|
const { GroupId } = this.$route.query
|
|
|
- this.AppId = GroupId
|
|
|
- this.systemSetuser = obj
|
|
|
+ this.appId = GroupId
|
|
|
if (OpenRole) {
|
|
|
this.title = '角色'
|
|
|
}
|
|
@@ -384,22 +366,18 @@ export default {
|
|
|
this.form.UserPwd = this.generatePassword(this.PwdStruc, this.PwdLengthBegin, this.PwdLengthEnd)
|
|
|
},
|
|
|
methods: {
|
|
|
- // delate: function (index) {
|
|
|
- // this.dialogVisible = true;
|
|
|
- // },
|
|
|
getCheckedList(data) {
|
|
|
this.CheckedList = data
|
|
|
},
|
|
|
-
|
|
|
- // 获取权限树回调
|
|
|
- getTreeDatas(arr) {
|
|
|
+ // 获取权限树
|
|
|
+ getPermissionTreeData(arr) {
|
|
|
this.checkedAuthList = arr
|
|
|
},
|
|
|
- rest() {
|
|
|
+ resetPwd() {
|
|
|
this.form.passward = this.generatePassword(this.PwdStruc, this.PwdLengthBegin, this.PwdLengthEnd)
|
|
|
},
|
|
|
// 获取权限规则
|
|
|
- getData(obj) {
|
|
|
+ getRulesData(obj) {
|
|
|
this.rulesObj = obj
|
|
|
},
|
|
|
generatePassword(rules, minNum, maxNum) {
|
|
@@ -430,7 +408,7 @@ export default {
|
|
|
item[i] += rulesArrLnArr[parseInt(Math.random() * (rulesArrLnArr.length - 0) + 0)] // 其余部分随机生成1-4的数字。
|
|
|
}
|
|
|
} // 打乱次序,重新排序,否则密码第四位永远是特殊符号。
|
|
|
- item.sort(function() {
|
|
|
+ item.sort(function () {
|
|
|
return 0.5 - Math.random()
|
|
|
}) // 返回0 两个数位置不变;小于0 就交换位置;大于0就不交换位置
|
|
|
|
|
@@ -449,7 +427,8 @@ export default {
|
|
|
},
|
|
|
|
|
|
// 账号组树
|
|
|
- getTreeData(arr) {
|
|
|
+ getGroupTreeData(arr) {
|
|
|
+ console.log(arr)
|
|
|
this.checkTrees = arr
|
|
|
this.checkTrees.forEach(item => {
|
|
|
this.orgId = item.GroupId
|
|
@@ -491,16 +470,16 @@ export default {
|
|
|
// 详情查询
|
|
|
async editAccInfo() {
|
|
|
try {
|
|
|
- const res = await accDeaitls({
|
|
|
+ const res = await getAccountDetails({
|
|
|
UserId: this.userId
|
|
|
})
|
|
|
if (res.code === 0) {
|
|
|
- const { UserDesc, UserName, GroupList, UserPwd, TacList, AuthList, RoleList } = res.returnData
|
|
|
+ // console.log(res.returnData)
|
|
|
+ const { UserDesc, UserName, GroupList, TacList, AuthList, RoleList } = res.returnData
|
|
|
this.form.name = UserName
|
|
|
this.form.diesc = UserDesc
|
|
|
this.checkedIdList = GroupList
|
|
|
this.loginList = TacList
|
|
|
- console.log(UserPwd)
|
|
|
// console.log(this.checkedIdList)
|
|
|
this.loginList.forEach(item => {
|
|
|
if (item.IsSelected === 1) {
|
|
@@ -511,10 +490,10 @@ export default {
|
|
|
this.$store.state.auth.authList = AuthList
|
|
|
|
|
|
AuthList.forEach(item => {
|
|
|
- this.powerT.push(item.AuthId)
|
|
|
+ this.permissionTreeChckedKeys.push(item.AuthId)
|
|
|
})
|
|
|
this.roleList = RoleList
|
|
|
- this.roleList.forEach((item, index) => {
|
|
|
+ this.roleList?.forEach((item, index) => {
|
|
|
if (item.IsSelected === 1) {
|
|
|
this.checkRole.push(index)
|
|
|
this.checkRoles.push(item)
|
|
@@ -530,7 +509,7 @@ export default {
|
|
|
},
|
|
|
|
|
|
// 账号编辑修改
|
|
|
- async editAcc() {
|
|
|
+ async saveEdit() {
|
|
|
this.treeData1 = []
|
|
|
this.checkedAuthList.forEach(item => {
|
|
|
this.treeData1.push(item.AuthList)
|
|
@@ -544,7 +523,7 @@ export default {
|
|
|
})
|
|
|
|
|
|
try {
|
|
|
- const res = await deitAcc({
|
|
|
+ const res = await editAccount({
|
|
|
UserDesc: this.form.diesc,
|
|
|
UserName: this.form.name,
|
|
|
UserPwd: this.form.passward,
|
|
@@ -590,10 +569,12 @@ export default {
|
|
|
async queryRole() {
|
|
|
try {
|
|
|
const res = await GetRoleByGroup({
|
|
|
- GroupId: this.orgId
|
|
|
+ GroupId: this.orgId,
|
|
|
+ GroupIds: [0]
|
|
|
})
|
|
|
if (res.code === 0) {
|
|
|
const arr = res.returnData
|
|
|
+ console.log(arr)
|
|
|
const userArr = []
|
|
|
arr.forEach(item => {
|
|
|
item.name = item.RoleName
|
|
@@ -601,7 +582,6 @@ export default {
|
|
|
userArr.push(item)
|
|
|
}
|
|
|
})
|
|
|
-
|
|
|
this.roleList = userArr
|
|
|
} else {
|
|
|
this.$message.error(res.message)
|