|
@@ -21,63 +21,22 @@
|
|
|
</div> -->
|
|
|
<div v-is="doesAccountExist ? ['userupdate_btn_save'] : []">
|
|
|
<!-- <el-button size="small" type="primary" class="btn-delete" @click="delate">删除</el-button> -->
|
|
|
- <el-button
|
|
|
- size="small"
|
|
|
- type="primary"
|
|
|
- class="btn-save"
|
|
|
- @click="handleClickSave('accountForm')"
|
|
|
- >保存</el-button>
|
|
|
+ <el-button size="small" type="primary" class="btn-save" @click="handleClickSave('accountForm')">保存</el-button>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="title-content">
|
|
|
- <el-form
|
|
|
- ref="accountForm"
|
|
|
- :inline="true"
|
|
|
- :model="accountForm"
|
|
|
- :rules="formRules"
|
|
|
- >
|
|
|
- <el-form-item
|
|
|
- label="账号名称"
|
|
|
- prop="name"
|
|
|
- >
|
|
|
- <el-input
|
|
|
- v-model="accountForm.name"
|
|
|
- maxlength="32"
|
|
|
- placeholder="请输入名称"
|
|
|
- size="small"
|
|
|
- />
|
|
|
+ <el-form ref="accountForm" :inline="true" :model="accountForm" :rules="formRules">
|
|
|
+ <el-form-item label="账号名称" prop="name">
|
|
|
+ <el-input v-model="accountForm.name" maxlength="32" placeholder="请输入名称" size="small" />
|
|
|
</el-form-item>
|
|
|
- <el-form-item
|
|
|
- label="登录密码"
|
|
|
- prop="pwd"
|
|
|
- >
|
|
|
- <el-input
|
|
|
- v-model="accountForm.pwd"
|
|
|
- placeholder="*******"
|
|
|
- size="small"
|
|
|
- disabled
|
|
|
- />
|
|
|
+ <el-form-item label="登录密码" prop="pwd">
|
|
|
+ <el-input v-model="accountForm.pwd" placeholder="*******" size="small" disabled />
|
|
|
</el-form-item>
|
|
|
<el-form-item>
|
|
|
- <el-button
|
|
|
- v-is="doesAccountExist ? ['userupdate_btn_re_pwd'] : []"
|
|
|
- size="small"
|
|
|
- type="primary"
|
|
|
- class="btn-reset-pwd"
|
|
|
- @click="resetPwd"
|
|
|
- >重置密码</el-button>
|
|
|
+ <el-button v-is="doesAccountExist ? ['userupdate_btn_re_pwd'] : []" size="small" type="primary" class="btn-reset-pwd" @click="resetPwd">重置密码</el-button>
|
|
|
</el-form-item>
|
|
|
- <el-form-item
|
|
|
- label="描述"
|
|
|
- prop="desc"
|
|
|
- >
|
|
|
- <el-input
|
|
|
- v-model="accountForm.desc"
|
|
|
- class="desc"
|
|
|
- maxlength="128"
|
|
|
- placeholder="描述内容···"
|
|
|
- size="small"
|
|
|
- />
|
|
|
+ <el-form-item label="描述" prop="desc">
|
|
|
+ <el-input v-model="accountForm.desc" class="desc" maxlength="128" placeholder="描述内容···" size="small" />
|
|
|
</el-form-item>
|
|
|
</el-form>
|
|
|
</div>
|
|
@@ -85,61 +44,31 @@
|
|
|
|
|
|
<div class="account-edit-main">
|
|
|
<!-- 用户组和角色未开启 -->
|
|
|
- <el-row
|
|
|
- v-if="!openGroup && !openRole"
|
|
|
- :gutter="24"
|
|
|
- >
|
|
|
+ <el-row v-if="!openGroup && !openRole" :gutter="24">
|
|
|
<el-col :span="8">
|
|
|
<div class="content-card">
|
|
|
- <PermissionTree
|
|
|
- title="权限树"
|
|
|
- :query-type="queryType"
|
|
|
- :checked-keys="permissionTreeChckedKeys"
|
|
|
- @getTreeData="getPermissionTreeChecked"
|
|
|
- />
|
|
|
+ <PermissionTree title="权限树" :query-type="queryType" :checked-keys="permissionTreeChckedKeys" @getTreeData="getPermissionTreeChecked" />
|
|
|
</div>
|
|
|
</el-col>
|
|
|
<el-col :span="8">
|
|
|
<div class="content-card">
|
|
|
- <RulesOfCompetency
|
|
|
- title="权限规则"
|
|
|
- margin-b="20px"
|
|
|
- @getData="getRulesOfCompetency"
|
|
|
- />
|
|
|
+ <RulesOfCompetency title="权限规则" margin-b="20px" @getData="getRulesOfCompetency" />
|
|
|
</div>
|
|
|
</el-col>
|
|
|
- <el-col
|
|
|
- v-is=" doesAccountExist ? ['account_edit_login_setting'] : ['account_add_login_setting']"
|
|
|
- :span="8"
|
|
|
- >
|
|
|
+ <el-col v-is="doesAccountExist ? ['account_edit_login_setting'] : ['account_add_login_setting']" :span="8">
|
|
|
<div class="content-card">
|
|
|
- <LoginPolicy
|
|
|
- :checked-list="loginPolicyCheckedList"
|
|
|
- @getCheckedList="getLoginPolicyChecked"
|
|
|
- />
|
|
|
+ <LoginPolicy :checked-list="loginPolicyCheckedList" @getCheckedList="getLoginPolicyChecked" />
|
|
|
</div>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
<!-- 角色和用户组都开启 -->
|
|
|
- <el-row
|
|
|
- v-if="openGroup && openRole"
|
|
|
- :gutter="24"
|
|
|
- >
|
|
|
+ <el-row v-if="openGroup && openRole" :gutter="24">
|
|
|
<el-col :span="8">
|
|
|
<div class="content-card">
|
|
|
- <AccountGroupTree
|
|
|
- title="所属账号组"
|
|
|
- nodekey="GroupId"
|
|
|
- :default-props="accountGroupTreeProps"
|
|
|
- :checked-keys="accountGroupTreeCheckedList"
|
|
|
- @getTreeData="getAccountGroupChecked"
|
|
|
- />
|
|
|
+ <AccountGroupTree title="所属账号组" nodekey="GroupId" :default-props="accountGroupTreeProps" :checked-keys="accountGroupTreeCheckedList" @getTreeData="getAccountGroupChecked" />
|
|
|
</div>
|
|
|
</el-col>
|
|
|
- <el-col
|
|
|
- v-is="doesAccountExist ? ['account_edit_role_list'] : ['account_add_role_list']"
|
|
|
- :span="8"
|
|
|
- >
|
|
|
+ <el-col v-is="doesAccountExist ? ['account_edit_role_list'] : ['account_add_role_list']" :span="8">
|
|
|
<div class="content-card">
|
|
|
<RoleList
|
|
|
title="角色列表"
|
|
@@ -154,90 +83,39 @@
|
|
|
/>
|
|
|
</div>
|
|
|
</el-col>
|
|
|
- <el-col
|
|
|
- v-is="doesAccountExist
|
|
|
- ? ['account_edit_auth_list','account_edit_login_setting']
|
|
|
- : ['account_add_auth_list','account_add_login_setting']"
|
|
|
- :span="8"
|
|
|
- >
|
|
|
- <div
|
|
|
- v-is="doesAccountExist ? ['account_edit_auth_list'] : ['account_add_auth_list']"
|
|
|
- class="content-card"
|
|
|
- >
|
|
|
- <PermissionList
|
|
|
- title="权限列表"
|
|
|
- class="permission-list"
|
|
|
- :role-list="checkedRoles"
|
|
|
- :check="true"
|
|
|
- @Competen="Competen"
|
|
|
- />
|
|
|
+ <el-col v-is="doesAccountExist ? ['account_edit_auth_list', 'account_edit_login_setting'] : ['account_add_auth_list', 'account_add_login_setting']" :span="8">
|
|
|
+ <div v-is="doesAccountExist ? ['account_edit_auth_list'] : ['account_add_auth_list']" class="content-card">
|
|
|
+ <PermissionList title="权限列表" class="permission-list" :role-list="checkedRoles" :check="true" @Competen="Competen" />
|
|
|
</div>
|
|
|
- <div
|
|
|
- v-is="doesAccountExist ? ['account_edit_login_setting'] : ['account_add_login_setting']"
|
|
|
- class="content-card"
|
|
|
- >
|
|
|
- <LoginPolicy
|
|
|
- :checked-list="loginPolicyCheckedList"
|
|
|
- @getCheckedList="getLoginPolicyChecked"
|
|
|
- />
|
|
|
+ <div v-is="doesAccountExist ? ['account_edit_login_setting'] : ['account_add_login_setting']" class="content-card">
|
|
|
+ <LoginPolicy :checked-list="loginPolicyCheckedList" @getCheckedList="getLoginPolicyChecked" />
|
|
|
</div>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
<!-- 只开启用户组 -->
|
|
|
- <el-row
|
|
|
- v-if="openGroup && !openRole"
|
|
|
- :gutter="24"
|
|
|
- >
|
|
|
+ <el-row v-if="openGroup && !openRole" :gutter="24">
|
|
|
<el-col :span="8">
|
|
|
<div class="content-card">
|
|
|
- <AccountGroupTree
|
|
|
- title="所属账号组"
|
|
|
- nodekey="GroupId"
|
|
|
- :default-props="accountGroupTreeProps"
|
|
|
- :checked-keys="accountGroupTreeCheckedList"
|
|
|
- @getTreeData="getAccountGroupChecked"
|
|
|
- />
|
|
|
+ <AccountGroupTree title="所属账号组" nodekey="GroupId" :default-props="accountGroupTreeProps" :checked-keys="accountGroupTreeCheckedList" @getTreeData="getAccountGroupChecked" />
|
|
|
</div>
|
|
|
</el-col>
|
|
|
<el-col :span="8">
|
|
|
<div class="content-card">
|
|
|
- <PermissionTree
|
|
|
- title="权限树"
|
|
|
- :query-type="queryType"
|
|
|
- :query-ids="queryIds"
|
|
|
- :checked-keys="permissionTreeChckedKeys"
|
|
|
- @getTreeData="getPermissionTreeChecked"
|
|
|
- />
|
|
|
+ <PermissionTree title="权限树" :query-type="queryType" :query-ids="queryIds" :checked-keys="permissionTreeChckedKeys" @getTreeData="getPermissionTreeChecked" />
|
|
|
</div>
|
|
|
</el-col>
|
|
|
<el-col :span="8">
|
|
|
<div class="content-card">
|
|
|
- <RulesOfCompetency
|
|
|
- title="权限规则"
|
|
|
- margin-b="20px"
|
|
|
- @getData="getRulesOfCompetency"
|
|
|
- />
|
|
|
+ <RulesOfCompetency title="权限规则" margin-b="20px" @getData="getRulesOfCompetency" />
|
|
|
</div>
|
|
|
- <div
|
|
|
- v-is="doesAccountExist ? ['account_edit_login_setting'] : ['account_add_login_setting']"
|
|
|
- class="content-card"
|
|
|
- >
|
|
|
- <LoginPolicy
|
|
|
- :checked-list="loginPolicyCheckedList"
|
|
|
- @getCheckedList="getLoginPolicyChecked"
|
|
|
- />
|
|
|
+ <div v-is="doesAccountExist ? ['account_edit_login_setting'] : ['account_add_login_setting']" class="content-card">
|
|
|
+ <LoginPolicy :checked-list="loginPolicyCheckedList" @getCheckedList="getLoginPolicyChecked" />
|
|
|
</div>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
<!-- 只开启角色 -->
|
|
|
- <el-row
|
|
|
- v-if="!openGroup && openRole"
|
|
|
- :gutter="24"
|
|
|
- >
|
|
|
- <el-col
|
|
|
- v-is="doesAccountExist ? ['account_edit_role_list'] : ['account_add_role_list']"
|
|
|
- :span="12"
|
|
|
- >
|
|
|
+ <el-row v-if="!openGroup && openRole" :gutter="24">
|
|
|
+ <el-col v-is="doesAccountExist ? ['account_edit_role_list'] : ['account_add_role_list']" :span="12">
|
|
|
<div class="content-card">
|
|
|
<RoleList
|
|
|
title="角色列表"
|
|
@@ -251,18 +129,9 @@
|
|
|
/>
|
|
|
</div>
|
|
|
</el-col>
|
|
|
- <el-col
|
|
|
- v-is="doesAccountExist ? ['account_edit_auth_list'] : ['account_add_auth_list']"
|
|
|
- :span="12"
|
|
|
- >
|
|
|
+ <el-col v-is="doesAccountExist ? ['account_edit_auth_list'] : ['account_add_auth_list']" :span="12">
|
|
|
<div class="content-card">
|
|
|
- <PermissionList
|
|
|
- title="权限列表"
|
|
|
- :role-list="checkedRoles"
|
|
|
- :check="true"
|
|
|
- class="permission-list"
|
|
|
- @Competen="Competen"
|
|
|
- />
|
|
|
+ <PermissionList title="权限列表" :role-list="checkedRoles" :check="true" class="permission-list" @Competen="Competen" />
|
|
|
</div>
|
|
|
</el-col>
|
|
|
<!-- <el-col
|
|
@@ -296,18 +165,18 @@
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
-import AccountGroupTree from '@/components/usergrouptree/index.vue'
|
|
|
-import PermissionTree from '@/components/permissiontree/index.vue'
|
|
|
-import RulesOfCompetency from '@/components/rulesofcompetency/index.vue'
|
|
|
-import LoginPolicy from '@/components/loginpolicy/index.vue'
|
|
|
-import RoleList from '@/components/rolelist/index.vue'
|
|
|
-import PermissionList from '@/components/permissionlist/index.vue'
|
|
|
+import AccountGroupTree from "@/components/usergrouptree/index.vue";
|
|
|
+import PermissionTree from "@/components/permissiontree/index.vue";
|
|
|
+import RulesOfCompetency from "@/components/rulesofcompetency/index.vue";
|
|
|
+import LoginPolicy from "@/components/loginpolicy/index.vue";
|
|
|
+import RoleList from "@/components/rolelist/index.vue";
|
|
|
+import PermissionList from "@/components/permissionlist/index.vue";
|
|
|
// import Dialog from '@/layout/components/Dialog'
|
|
|
|
|
|
-import { RoleAuths } from '@/api/apiAuthority'
|
|
|
-import { getAccountDetails, editAccount, addAccount } from '@/api/Account.js'
|
|
|
-import { pwdProduce } from '@/utils/validate'
|
|
|
-import { mapGetters } from 'vuex'
|
|
|
+import { RoleAuths } from "@/api/apiAuthority";
|
|
|
+import { getAccountDetails, editAccount, addAccount } from "@/api/Account.js";
|
|
|
+import { pwdProduce } from "@/utils/validate";
|
|
|
+import { mapGetters } from "vuex";
|
|
|
|
|
|
export default {
|
|
|
components: {
|
|
@@ -316,16 +185,16 @@ export default {
|
|
|
RulesOfCompetency,
|
|
|
LoginPolicy,
|
|
|
RoleList,
|
|
|
- PermissionList
|
|
|
+ PermissionList,
|
|
|
// Dialog
|
|
|
},
|
|
|
data() {
|
|
|
return {
|
|
|
doesAccountExist: this.$route.meta.doesAccountExist, // 控制账号新增/编辑
|
|
|
- userId: '',
|
|
|
+ userId: "",
|
|
|
openRole: 0,
|
|
|
openGroup: 0,
|
|
|
- pwdStruc: '',
|
|
|
+ pwdStruc: "",
|
|
|
pwdLengthBegin: 0,
|
|
|
pwdLengthEnd: 0,
|
|
|
permissionTreeChckedKeys: [], // 权限树初始勾选项
|
|
@@ -337,8 +206,8 @@ export default {
|
|
|
accountGroupTreeCheckedTemp: [], // 账号组树当前勾选项
|
|
|
roleListCheckedList: [], // 角色列表初始勾选项
|
|
|
roleListCheckedTemp: [], // 角色列表当前勾选项
|
|
|
- roleType: '',
|
|
|
- queryType: '',
|
|
|
+ roleType: "",
|
|
|
+ queryType: "",
|
|
|
checkedRoles: [],
|
|
|
currentSelectedRoleId: 0,
|
|
|
groupIds: [],
|
|
@@ -346,53 +215,53 @@ export default {
|
|
|
// dialogVisible: false,
|
|
|
formRules: {
|
|
|
name: [
|
|
|
- { required: true, message: '请输入账号名称', trigger: 'blur' },
|
|
|
- { min: 1, max: 32, message: '长度在 1到 32 个字符', trigger: 'blur' }
|
|
|
+ { required: true, message: "请输入账号名称", trigger: "blur" },
|
|
|
+ { min: 1, max: 32, message: "长度在 1到 32 个字符", trigger: "blur" },
|
|
|
],
|
|
|
- desc: [{ min: 1, max: 128, message: '长度最多128个字符', trigger: 'blur' }]
|
|
|
+ desc: [{ min: 1, max: 128, message: "长度最多128个字符", trigger: "blur" }],
|
|
|
},
|
|
|
accountForm: {
|
|
|
name: null,
|
|
|
pwd: null,
|
|
|
desc: null,
|
|
|
- status: 0
|
|
|
+ status: 0,
|
|
|
},
|
|
|
accountGroupTreeProps: {
|
|
|
- children: 'children',
|
|
|
- label: 'GroupName'
|
|
|
- }
|
|
|
- }
|
|
|
+ children: "children",
|
|
|
+ label: "GroupName",
|
|
|
+ },
|
|
|
+ };
|
|
|
},
|
|
|
computed: {
|
|
|
- ...mapGetters(['systemSet']),
|
|
|
+ ...mapGetters(["systemSet"]),
|
|
|
pageTitle() {
|
|
|
- return this.doesAccountExist ? '编辑账号' : '新增账号'
|
|
|
- }
|
|
|
+ return this.doesAccountExist ? "编辑账号" : "新增账号";
|
|
|
+ },
|
|
|
},
|
|
|
created() {
|
|
|
// 获取系统配置
|
|
|
- let obj
|
|
|
- if (typeof this.systemSet === 'string') {
|
|
|
- obj = JSON.parse(this.systemSet)
|
|
|
+ let obj;
|
|
|
+ if (typeof this.systemSet === "string") {
|
|
|
+ obj = JSON.parse(this.systemSet);
|
|
|
} else {
|
|
|
- obj = this.systemSet
|
|
|
+ obj = this.systemSet;
|
|
|
}
|
|
|
// console.log(obj)
|
|
|
- const { OpenRole, OpenGroup, PwdStruc, PwdLengthBegin, PwdLengthEnd } = obj
|
|
|
- this.openRole = OpenRole
|
|
|
- this.openGroup = OpenGroup
|
|
|
- this.pwdStruc = PwdStruc
|
|
|
- this.pwdLengthBegin = PwdLengthBegin
|
|
|
- this.pwdLengthEnd = PwdLengthEnd
|
|
|
+ const { OpenRole, OpenGroup, PwdStruc, PwdLengthBegin, PwdLengthEnd } = obj;
|
|
|
+ this.openRole = OpenRole;
|
|
|
+ this.openGroup = OpenGroup;
|
|
|
+ this.pwdStruc = PwdStruc;
|
|
|
+ this.pwdLengthBegin = PwdLengthBegin;
|
|
|
+ this.pwdLengthEnd = PwdLengthEnd;
|
|
|
},
|
|
|
mounted() {
|
|
|
if (this.doesAccountExist) {
|
|
|
- this.userId = this.$route.query.userId
|
|
|
- this.getAccountInfo()
|
|
|
+ this.userId = this.$route.query.userId;
|
|
|
+ this.getAccountInfo();
|
|
|
} else {
|
|
|
- this.resetPwd()
|
|
|
- this.roleType = 'onlyRole'
|
|
|
- this.queryType = 'all'
|
|
|
+ this.resetPwd();
|
|
|
+ this.roleType = "onlyRole";
|
|
|
+ this.queryType = "all";
|
|
|
}
|
|
|
},
|
|
|
methods: {
|
|
@@ -400,182 +269,182 @@ export default {
|
|
|
async getAccountInfo() {
|
|
|
try {
|
|
|
const res = await getAccountDetails({
|
|
|
- UserId: this.userId
|
|
|
- })
|
|
|
+ UserId: this.userId,
|
|
|
+ });
|
|
|
if (res.code === 0) {
|
|
|
// console.log(res.returnData)
|
|
|
- const { UserDesc, UserName, GroupList, TacList, AuthList, RoleList, Status } = res.returnData
|
|
|
- this.accountForm.name = UserName
|
|
|
- this.accountForm.desc = UserDesc
|
|
|
- this.accountForm.status = Status ?? 1
|
|
|
+ const { UserDesc, UserName, GroupList, TacList, AuthList, RoleList, Status } = res.returnData;
|
|
|
+ this.accountForm.name = UserName;
|
|
|
+ this.accountForm.desc = UserDesc;
|
|
|
+ this.accountForm.status = Status ?? 1;
|
|
|
|
|
|
AuthList &&
|
|
|
AuthList.length &&
|
|
|
- AuthList.forEach(auth => {
|
|
|
- this.permissionTreeChckedKeys.push(auth.AuthId)
|
|
|
- this.permissionTreeChckedTemp.push(auth)
|
|
|
- })
|
|
|
+ AuthList.forEach((auth) => {
|
|
|
+ this.permissionTreeChckedKeys.push(auth.AuthId);
|
|
|
+ this.permissionTreeChckedTemp.push(auth);
|
|
|
+ });
|
|
|
if (GroupList && GroupList.length && GroupList[0] !== -1) {
|
|
|
- this.roleType = this.openGroup ? 'roleByUpId' : 'onlyRole'
|
|
|
- this.queryType = this.openGroup ? 'group' : 'all'
|
|
|
- GroupList.forEach(group => {
|
|
|
- this.accountGroupTreeCheckedList.push(group.GroupId)
|
|
|
- this.accountGroupTreeCheckedTemp.push(group.GroupId)
|
|
|
- this.groupIds.push(group.GroupId)
|
|
|
- this.queryIds.push(group.GroupId)
|
|
|
- })
|
|
|
+ this.roleType = this.openGroup ? "roleByUpId" : "onlyRole";
|
|
|
+ this.queryType = this.openGroup ? "group" : "all";
|
|
|
+ GroupList.forEach((group) => {
|
|
|
+ this.accountGroupTreeCheckedList.push(group.GroupId);
|
|
|
+ this.accountGroupTreeCheckedTemp.push(group.GroupId);
|
|
|
+ this.groupIds.push(group.GroupId);
|
|
|
+ this.queryIds.push(group.GroupId);
|
|
|
+ });
|
|
|
} else {
|
|
|
- this.roleType = 'onlyRole'
|
|
|
- this.queryType = 'all'
|
|
|
- this.accountGroupTreeCheckedTemp.push(-1)
|
|
|
+ this.roleType = "onlyRole";
|
|
|
+ this.queryType = "all";
|
|
|
+ this.accountGroupTreeCheckedTemp.push(-1);
|
|
|
}
|
|
|
|
|
|
RoleList &&
|
|
|
RoleList.length &&
|
|
|
- RoleList.forEach(role => {
|
|
|
- role.IsSelected && this.roleListCheckedTemp.push(role)
|
|
|
- })
|
|
|
+ RoleList.forEach((role) => {
|
|
|
+ role.IsSelected && this.roleListCheckedTemp.push(role);
|
|
|
+ });
|
|
|
TacList &&
|
|
|
TacList &&
|
|
|
- TacList.forEach(tac => {
|
|
|
- tac.IsSelected && this.loginPolicyCheckedList.push(tac)
|
|
|
- tac.IsSelected && this.loginPolicyCheckedTemp.push(tac)
|
|
|
- })
|
|
|
+ TacList.forEach((tac) => {
|
|
|
+ tac.IsSelected && this.loginPolicyCheckedList.push(tac);
|
|
|
+ tac.IsSelected && this.loginPolicyCheckedTemp.push(tac);
|
|
|
+ });
|
|
|
} else {
|
|
|
- this.$message.error(res.message)
|
|
|
+ this.$message.error(res.message);
|
|
|
}
|
|
|
} catch (error) {
|
|
|
- console.log('出错了', error.message || error)
|
|
|
+ console.log("出错了", error.message || error);
|
|
|
}
|
|
|
},
|
|
|
// 随机生成密码
|
|
|
resetPwd() {
|
|
|
- this.accountForm.pwd = pwdProduce(this.pwdLengthBegin, this.pwdLengthEnd, this.pwdStruc)
|
|
|
+ this.accountForm.pwd = pwdProduce(this.pwdLengthBegin, this.pwdLengthEnd, this.pwdStruc);
|
|
|
},
|
|
|
// 获取当前权限树勾选项
|
|
|
getPermissionTreeChecked(arr) {
|
|
|
- this.permissionTreeChckedTemp = arr.map(auth => auth.AuthList)
|
|
|
+ this.permissionTreeChckedTemp = arr.map((auth) => auth.AuthList);
|
|
|
},
|
|
|
// 获取当前编辑的权限规则
|
|
|
getRulesOfCompetency(obj) {
|
|
|
- this.rulesOfCompetency = obj
|
|
|
+ this.rulesOfCompetency = obj;
|
|
|
},
|
|
|
// 获取当前勾选的登录策略
|
|
|
getLoginPolicyChecked(arr) {
|
|
|
- this.loginPolicyCheckedTemp = arr
|
|
|
+ this.loginPolicyCheckedTemp = arr;
|
|
|
},
|
|
|
// 获取当前勾选的账号组
|
|
|
getAccountGroupChecked(arr) {
|
|
|
if (arr && arr.length && arr[0] !== -1) {
|
|
|
- const GroupIds = arr.map(item => item.GroupId)
|
|
|
- this.accountGroupTreeCheckedTemp = GroupIds
|
|
|
- this.roleType = 'roleByUpId'
|
|
|
- this.groupIds = GroupIds
|
|
|
- this.queryType = 'group'
|
|
|
- this.queryIds = GroupIds
|
|
|
+ const GroupIds = arr.map((item) => item.GroupId);
|
|
|
+ this.accountGroupTreeCheckedTemp = GroupIds;
|
|
|
+ this.roleType = "roleByUpId";
|
|
|
+ this.groupIds = GroupIds;
|
|
|
+ this.queryType = "group";
|
|
|
+ this.queryIds = GroupIds;
|
|
|
} else {
|
|
|
- this.accountGroupTreeCheckedTemp = [-1]
|
|
|
- this.roleType = 'onlyRole'
|
|
|
- this.queryType = 'all'
|
|
|
+ this.accountGroupTreeCheckedTemp = [-1];
|
|
|
+ this.roleType = "onlyRole";
|
|
|
+ this.queryType = "all";
|
|
|
}
|
|
|
},
|
|
|
// 获取当前勾选的角色列表
|
|
|
getRoleListChecked(arr) {
|
|
|
- this.roleListCheckedTemp = arr
|
|
|
+ this.roleListCheckedTemp = arr;
|
|
|
},
|
|
|
roleListCheckedChange(arr) {
|
|
|
- this.roleListCheckedTemp = this.roleListCheckedTemp.filter(role => arr.some(data => data.RoleId === role.RoleId))
|
|
|
- this.roleListCheckedList = this.roleListCheckedTemp.map(role => role.RoleId)
|
|
|
+ this.roleListCheckedTemp = this.roleListCheckedTemp.filter((role) => arr.some((data) => data.RoleId === role.RoleId));
|
|
|
+ this.roleListCheckedList = this.roleListCheckedTemp.map((role) => role.RoleId);
|
|
|
},
|
|
|
// 点击角色后显示对应权限列表
|
|
|
async selectRole(data) {
|
|
|
- if (this.currentSelectedRoleId === data.RoleId) return
|
|
|
+ if (this.currentSelectedRoleId === data.RoleId) return;
|
|
|
try {
|
|
|
const params = {
|
|
|
- RoleId: data.RoleId
|
|
|
- }
|
|
|
- const result = await RoleAuths(params)
|
|
|
+ RoleId: data.RoleId,
|
|
|
+ };
|
|
|
+ const result = await RoleAuths(params);
|
|
|
if (result.code === 0) {
|
|
|
- this.checkedRoles = result.returnData
|
|
|
- this.currentSelectedRoleId = data.RoleId
|
|
|
+ this.checkedRoles = result.returnData;
|
|
|
+ this.currentSelectedRoleId = data.RoleId;
|
|
|
} else {
|
|
|
- this.$message.error(result.message)
|
|
|
+ this.$message.error(result.message);
|
|
|
}
|
|
|
} catch (error) {
|
|
|
- console.log('出错了', error.message || error)
|
|
|
+ console.log("出错了", error.message || error);
|
|
|
}
|
|
|
},
|
|
|
// 修改权限规则
|
|
|
Competen(data) {
|
|
|
- console.log(data)
|
|
|
+ console.log(data);
|
|
|
},
|
|
|
// 账号编辑保存
|
|
|
handleClickSave(formName) {
|
|
|
- this.$refs[formName].validate(valid => {
|
|
|
+ this.$refs[formName].validate((valid) => {
|
|
|
if (valid) {
|
|
|
- this.handleSaveEdit()
|
|
|
+ this.handleSaveEdit();
|
|
|
} else {
|
|
|
- console.log('error submit!!')
|
|
|
- return false
|
|
|
+ console.log("error submit!!");
|
|
|
+ return false;
|
|
|
}
|
|
|
- })
|
|
|
+ });
|
|
|
},
|
|
|
handleSaveEdit() {
|
|
|
const params = {
|
|
|
AuthList: this.permissionTreeChckedTemp,
|
|
|
- GroupList: this.accountGroupTreeCheckedTemp.map(groupId => ({ GroupId: groupId })),
|
|
|
+ GroupList: this.accountGroupTreeCheckedTemp.map((groupId) => ({ GroupId: groupId })),
|
|
|
RoleList: this.roleListCheckedTemp,
|
|
|
TacList: this.loginPolicyCheckedTemp,
|
|
|
UserDesc: this.accountForm.desc,
|
|
|
UserName: this.accountForm.name,
|
|
|
- UserPwd: this.accountForm.pwd
|
|
|
- }
|
|
|
+ UserPwd: this.accountForm.pwd,
|
|
|
+ };
|
|
|
if (this.doesAccountExist) {
|
|
|
this.saveEditAccount({
|
|
|
...params,
|
|
|
UserId: this.userId,
|
|
|
- Status: this.accountForm.status
|
|
|
- })
|
|
|
+ Status: this.accountForm.status,
|
|
|
+ });
|
|
|
} else {
|
|
|
- this.saveAddAccount(params)
|
|
|
+ this.saveAddAccount(params);
|
|
|
}
|
|
|
},
|
|
|
// 编辑账号
|
|
|
async saveEditAccount(params) {
|
|
|
try {
|
|
|
- const res = await editAccount(params)
|
|
|
+ const res = await editAccount(params);
|
|
|
if (res.code === 0) {
|
|
|
- this.$message.success(res.message)
|
|
|
+ this.$message.success(res.message);
|
|
|
setTimeout(() => {
|
|
|
- this.$store.dispatch('tagsView/delView', this.$route)
|
|
|
- this.$router.push('/account')
|
|
|
- }, 1000)
|
|
|
+ this.$store.dispatch("tagsView/delView", this.$route);
|
|
|
+ this.$router.push("/account");
|
|
|
+ }, 1000);
|
|
|
} else {
|
|
|
- this.$message.error(res.message)
|
|
|
+ this.$message.error(res.message);
|
|
|
}
|
|
|
} catch (error) {
|
|
|
- console.log('出错了', error.message || error)
|
|
|
+ console.log("出错了", error.message || error);
|
|
|
}
|
|
|
},
|
|
|
// 新增账号
|
|
|
async saveAddAccount(params) {
|
|
|
try {
|
|
|
- const res = await addAccount(params)
|
|
|
+ const res = await addAccount(params);
|
|
|
if (res.code === 0) {
|
|
|
- this.$message.success(res.message)
|
|
|
+ this.$message.success(res.message);
|
|
|
setTimeout(() => {
|
|
|
- this.$store.dispatch('tagsView/delView', this.$route)
|
|
|
- this.$router.push('/account')
|
|
|
- }, 1000)
|
|
|
+ this.$store.dispatch("tagsView/delView", this.$route);
|
|
|
+ this.$router.push("/account");
|
|
|
+ }, 1000);
|
|
|
} else {
|
|
|
- this.$message.error(res.message)
|
|
|
+ this.$message.error(res.message);
|
|
|
}
|
|
|
} catch (error) {
|
|
|
- console.log('出错了', error.message || error)
|
|
|
+ console.log("出错了", error.message || error);
|
|
|
}
|
|
|
- }
|
|
|
- }
|
|
|
-}
|
|
|
+ },
|
|
|
+ },
|
|
|
+};
|
|
|
</script>
|
|
|
|
|
|
<style lang="scss" scoped>
|