accountEdit.vue 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552
  1. <!--
  2. * @Author: Badguy
  3. * @Date: 2022-02-15 11:37:42
  4. * @LastEditTime: 2022-03-16 16:36:49
  5. * @LastEditors: your name
  6. * @Description: 编辑账号
  7. * have a nice day!
  8. -->
  9. <template>
  10. <div class="account-edit">
  11. <div class="account-edit-header">
  12. <div class="title">
  13. <div class="title-left">{{ pageTitle }}</div>
  14. <!-- <div class="account-status">
  15. 是否启用
  16. <el-radio
  17. v-model="accountForm.status"
  18. v-if="accountForm.status == 1 || accountForm.status == 3"
  19. :label="1"
  20. >是</el-radio
  21. >
  22. <el-radio v-model="accountForm.status" v-if="accountForm.status == 2" :label="2"
  23. >是</el-radio
  24. >
  25. <el-radio v-model="accountForm.status" :label="3">否</el-radio>
  26. </div> -->
  27. <div v-is="['userupdate_btn_save']">
  28. <!-- <button type="submmit" class="btn-delete" @click="delate">删除</button> -->
  29. <button type="submmit" class="btn-save" @click="handleClickSave('accountForm')">保存</button>
  30. </div>
  31. </div>
  32. <div class="title-content">
  33. <el-form ref="accountForm" label-width="80px" :inline="true" :model="accountForm" :rules="formRules">
  34. <el-row :gutter="40">
  35. <el-col :span="5">
  36. <el-form-item label="账号名称" prop="name">
  37. <el-input v-model.trim="accountForm.name" placeholder="请输入名称" size="small" />
  38. </el-form-item>
  39. </el-col>
  40. <el-col :span="5">
  41. <el-form-item label="登录密码" prop="pwd">
  42. <el-input v-model="accountForm.pwd" placeholder="*******" size="small" disabled />
  43. </el-form-item>
  44. </el-col>
  45. <el-col v-is="['userupdate_btn_re_pwd']" :span="2">
  46. <button class="btn-reset-pwd" @click="resetPwd">重置密码</button>
  47. </el-col>
  48. <el-col :span="8">
  49. <el-form-item label="描述" prop="desc">
  50. <el-input v-model.trim="accountForm.desc" placeholder="请输入描述" size="small" />
  51. </el-form-item>
  52. </el-col>
  53. </el-row>
  54. </el-form>
  55. </div>
  56. </div>
  57. <div class="content">
  58. <!-- 用户组和角色未开启 -->
  59. <el-row v-if="!openGroup && !openRole" :gutter="24">
  60. <el-col :span="8">
  61. <div class="content-card content-card-lg">
  62. <PermissionTree title="权限树" :query-type="queryType" :checked-keys="permissionTreeChckedKeys" @getTreeData="getPermissionTreeChecked" />
  63. </div>
  64. </el-col>
  65. <el-col :span="8">
  66. <div class="content-card content-card-lg">
  67. <RulesOfCompetency title="权限规则" margin-b="20px" @getData="getRulesOfCompetency" />
  68. </div>
  69. </el-col>
  70. <el-col v-is="['account_edit_login_setting']" :span="8">
  71. <div class="content-card content-card-lg">
  72. <LoginPolicy :checked-list="loginPolicyCheckedList" @getCheckedList="getLoginPolicyChecked" />
  73. </div>
  74. </el-col>
  75. </el-row>
  76. <!-- 角色和用户组都开启 -->
  77. <el-row v-if="openGroup && openRole" :gutter="24">
  78. <el-col :span="8">
  79. <div class="content-card content-card-xl">
  80. <AccountGroupTree :title="`所属${accountGroupType}`" nodekey="GroupId" :default-props="accountGroupTreeProps" :checked-keys="accountGroupTreeCheckedList" @getTreeData="getAccountGroupChecked" />
  81. </div>
  82. </el-col>
  83. <el-col v-is="['account_edit_role_list']" :span="8">
  84. <div class="content-card content-card-xl">
  85. <RoleList title="角色列表" :role-type="roleType" :group-ids="groupIds" :check-box-list="roleListCheckedList" :number="8" :active="true" @checkChange="getRoleListChecked" @checkClick="selectRole" @roleListChange="roleListCheckedChange" />
  86. </div>
  87. </el-col>
  88. <el-col v-is="['account_edit_auth_list']" :span="8">
  89. <div class="content-card content-card-sm">
  90. <PermissionList title="权限列表" class="permission-list" :role-list="checkedRoles" :check="true" @Competen="Competen" />
  91. </div>
  92. <div v-is="['account_edit_login_setting']" class="content-card content-card-xs">
  93. <LoginPolicy :checked-list="loginPolicyCheckedList" @getCheckedList="getLoginPolicyChecked" />
  94. </div>
  95. </el-col>
  96. </el-row>
  97. <!-- 只开启用户组 -->
  98. <el-row v-if="openGroup && !openRole" :gutter="24">
  99. <el-col :span="8">
  100. <div class="content-card content-card-xxl">
  101. <AccountGroupTree :title="`所属${accountGroupType}`" nodekey="GroupId" :default-props="accountGroupTreeProps" :checked-keys="accountGroupTreeCheckedList" @getTreeData="getAccountGroupChecked" />
  102. </div>
  103. </el-col>
  104. <el-col :span="8">
  105. <div class="content-card content-card-xxl">
  106. <PermissionTree title="权限树" :query-type="queryType" :query-ids="queryIds" :checked-keys="permissionTreeChckedKeys" @getTreeData="getPermissionTreeChecked" />
  107. </div>
  108. </el-col>
  109. <el-col :span="8">
  110. <div class="content-card content-card-md">
  111. <RulesOfCompetency title="权限规则" margin-b="20px" @getData="getRulesOfCompetency" />
  112. </div>
  113. <div v-is="['account_edit_login_setting']" class="content-card content-card-xs">
  114. <LoginPolicy :checked-list="loginPolicyCheckedList" @getCheckedList="getLoginPolicyChecked" />
  115. </div>
  116. </el-col>
  117. </el-row>
  118. <!-- 只开启角色 -->
  119. <el-row v-if="!openGroup && openRole" :gutter="24">
  120. <el-col v-is="['account_edit_role_list']" :span="8">
  121. <div class="content-card content-card-lg">
  122. <RoleList title="角色列表" :role-type="roleType" :check-box-list="roleListCheckedList" :number="8" :active="true" @checkChange="getRoleListChecked" @checkClick="selectRole" />
  123. </div>
  124. </el-col>
  125. <el-col v-is="['account_edit_auth_list']" :span="8">
  126. <div class="content-card content-card-lg">
  127. <PermissionList title="权限列表" :role-list="checkedRoles" :check="true" class="permission-list" @Competen="Competen" />
  128. </div>
  129. </el-col>
  130. <el-col v-is="['account_edit_login_setting']" :span="8">
  131. <div class="content-card content-card-lg">
  132. <LoginPolicy :checked-list="loginPolicyCheckedList" @getCheckedList="getLoginPolicyChecked" />
  133. </div>
  134. </el-col>
  135. </el-row>
  136. </div>
  137. <!-- <Dialog :flag="dialogVisible">
  138. <div class="closeDialog">
  139. <div class="title">删除账号</div>
  140. <div class="content">是否确定要删除该账号?</div>
  141. <div class="foot right t30">
  142. <el-button
  143. size="medium"
  144. type="danger"
  145. class="r24"
  146. >删除</el-button>
  147. <el-button size="medium">取消</el-button>
  148. </div>
  149. </div>
  150. </Dialog> -->
  151. </div>
  152. </template>
  153. <script>
  154. import AccountGroupTree from '@/components/usergrouptree/index.vue'
  155. import PermissionTree from '@/components/permissiontree/index.vue'
  156. import RulesOfCompetency from '@/components/rulesofcompetency/index.vue'
  157. import LoginPolicy from '@/components/loginpolicy/index.vue'
  158. import RoleList from '@/components/rolelist/index.vue'
  159. import PermissionList from '@/components/permissionlist/index.vue'
  160. // import Dialog from '@/layout/components/Dialog'
  161. import { RoleAuths } from '@/api/apiAuthority'
  162. import { getAccountDetails, editAccount, addAccount } from '@/api/Account.js'
  163. import { pwdProduce } from '@/utils/validate'
  164. import { mapGetters } from 'vuex'
  165. import { lengthValidator } from '@/utils/validate'
  166. export default {
  167. components: {
  168. AccountGroupTree,
  169. PermissionTree,
  170. RulesOfCompetency,
  171. LoginPolicy,
  172. RoleList,
  173. PermissionList
  174. // Dialog
  175. },
  176. data () {
  177. return {
  178. doesAccountExist: this.$route.meta.doesAccountExist, // 控制账号新增/编辑
  179. userId: '',
  180. openRole: 0,
  181. openGroup: 0,
  182. pwdStruc: '',
  183. pwdLengthBegin: 0,
  184. pwdLengthEnd: 0,
  185. permissionTreeChckedKeys: [], // 权限树初始勾选项
  186. permissionTreeChckedTemp: [], // 权限树当前勾选项
  187. rulesOfCompetency: null, // 当前编辑的权限规则
  188. loginPolicyCheckedList: [], // 登录策略初始勾选项
  189. loginPolicyCheckedTemp: [], // 登录策略当前勾选项
  190. accountGroupTreeCheckedList: [], // 岗位树初始勾选项
  191. accountGroupTreeCheckedTemp: [], // 岗位树当前勾选项
  192. roleListCheckedList: [], // 角色列表初始勾选项
  193. roleListCheckedTemp: [], // 角色列表当前勾选项
  194. roleType: '',
  195. queryType: '',
  196. checkedRoles: [],
  197. currentSelectedRoleId: 0,
  198. groupIds: [],
  199. queryIds: [],
  200. // dialogVisible: false,
  201. formRules: {
  202. name: [
  203. { required: true, message: '请输入账号名称', trigger: 'blur' },
  204. { validator: lengthValidator, max: 32, message: '长度在 1 到 32 个字符', trigger: ['change', 'blur'] }
  205. ],
  206. desc: [{ validator: lengthValidator, max: 128, message: '长度在 1 到 128 个字符', trigger: ['change', 'blur'] }]
  207. },
  208. accountForm: {
  209. name: '',
  210. pwd: '',
  211. desc: '',
  212. status: 0
  213. },
  214. accountGroupTreeProps: {
  215. children: 'children',
  216. label: 'GroupName'
  217. }
  218. }
  219. },
  220. computed: {
  221. ...mapGetters(['systemSet']),
  222. pageTitle () {
  223. return this.doesAccountExist ? '编辑账号' : '新增账号'
  224. }
  225. },
  226. created () {
  227. // 获取系统配置
  228. let obj
  229. if (typeof this.systemSet === 'string') {
  230. obj = JSON.parse(this.systemSet)
  231. } else {
  232. obj = this.systemSet
  233. }
  234. // console.log(obj)
  235. const { OpenRole, OpenGroup, PwdStruc, PwdLengthBegin, PwdLengthEnd } = obj
  236. this.openRole = OpenRole
  237. this.openGroup = OpenGroup
  238. this.pwdStruc = PwdStruc
  239. this.pwdLengthBegin = PwdLengthBegin
  240. this.pwdLengthEnd = PwdLengthEnd
  241. },
  242. mounted () {
  243. if (this.doesAccountExist) {
  244. this.userId = this.$route.query.userId
  245. this.getAccountInfo()
  246. } else {
  247. this.resetPwd()
  248. this.roleType = 'onlyRole'
  249. this.queryType = 'all'
  250. }
  251. },
  252. methods: {
  253. // 获取当前账号信息
  254. async getAccountInfo () {
  255. try {
  256. const res = await getAccountDetails({
  257. UserId: this.userId
  258. })
  259. if (res.code === 0) {
  260. // console.log(res.returnData)
  261. const { UserDesc, UserName, GroupList, TacList, AuthList, RoleList, Status } = res.returnData
  262. this.accountForm.name = UserName
  263. this.accountForm.desc = UserDesc
  264. this.accountForm.status = Status
  265. AuthList &&
  266. AuthList.length &&
  267. AuthList.forEach(auth => {
  268. this.permissionTreeChckedKeys.push(auth.AuthId)
  269. this.permissionTreeChckedTemp.push(auth)
  270. })
  271. if (GroupList && GroupList.length && GroupList[0] !== -1) {
  272. this.roleType = this.openGroup ? 'roleByUpId' : 'onlyRole'
  273. this.queryType = this.openGroup ? 'group' : 'all'
  274. GroupList.forEach(group => {
  275. this.accountGroupTreeCheckedList.push(group.GroupId)
  276. this.accountGroupTreeCheckedTemp.push(group.GroupId)
  277. this.groupIds.push(group.GroupId)
  278. this.queryIds.push(group.GroupId)
  279. })
  280. } else {
  281. this.roleType = 'onlyRole'
  282. this.queryType = 'all'
  283. this.accountGroupTreeCheckedTemp.push(-1)
  284. }
  285. RoleList &&
  286. RoleList.length &&
  287. RoleList.forEach(role => {
  288. role.IsSelected && this.roleListCheckedTemp.push(role)
  289. })
  290. TacList &&
  291. TacList &&
  292. TacList.forEach(tac => {
  293. tac.IsSelected && this.loginPolicyCheckedList.push(tac)
  294. tac.IsSelected && this.loginPolicyCheckedTemp.push(tac)
  295. })
  296. } else {
  297. this.$message.error(res.message)
  298. }
  299. } catch (error) {
  300. console.log('出错了', error)
  301. }
  302. },
  303. // 随机生成密码
  304. resetPwd () {
  305. this.accountForm.pwd = pwdProduce(this.pwdLengthBegin, this.pwdLengthEnd, this.pwdStruc)
  306. },
  307. // 获取当前权限树勾选项
  308. getPermissionTreeChecked (arr) {
  309. this.permissionTreeChckedTemp = arr.map(auth => auth.AuthList)
  310. },
  311. // 获取当前编辑的权限规则
  312. getRulesOfCompetency (obj) {
  313. this.rulesOfCompetency = obj
  314. },
  315. // 获取当前勾选的登录策略
  316. getLoginPolicyChecked (arr) {
  317. this.loginPolicyCheckedTemp = arr
  318. },
  319. // 获取当前勾选的岗位
  320. getAccountGroupChecked (arr) {
  321. if (arr && arr.length && arr[0] !== -1) {
  322. const GroupIds = arr.map(item => item.GroupId)
  323. this.accountGroupTreeCheckedTemp = GroupIds
  324. this.roleType = 'roleByUpId'
  325. this.groupIds = GroupIds
  326. this.queryType = 'group'
  327. this.queryIds = GroupIds
  328. } else {
  329. this.accountGroupTreeCheckedTemp = [-1]
  330. // this.roleType = 'onlyRole'
  331. this.groupIds = []
  332. this.queryType = 'all'
  333. }
  334. },
  335. // 获取当前勾选的角色列表
  336. getRoleListChecked (arr) {
  337. this.roleListCheckedTemp = arr
  338. },
  339. roleListCheckedChange (arr) {
  340. this.roleListCheckedTemp = this.roleListCheckedTemp.filter(role => arr.some(data => data.RoleId === role.RoleId))
  341. this.roleListCheckedList = this.roleListCheckedTemp.map(role => role.RoleId)
  342. },
  343. // 点击角色后显示对应权限列表
  344. async selectRole (data) {
  345. if (this.currentSelectedRoleId === data.RoleId) return
  346. try {
  347. const params = {
  348. RoleId: data.RoleId
  349. }
  350. const result = await RoleAuths(params)
  351. if (result.code === 0) {
  352. this.checkedRoles = result.returnData
  353. this.currentSelectedRoleId = data.RoleId
  354. } else {
  355. this.$message.error(result.message)
  356. }
  357. } catch (error) {
  358. console.log('出错了', error)
  359. }
  360. },
  361. // 修改权限规则
  362. Competen (data) {
  363. console.log(data)
  364. },
  365. // 账号编辑保存
  366. handleClickSave (formName) {
  367. this.$refs[formName].validate(valid => {
  368. if (valid) {
  369. this.handleSaveEdit()
  370. } else {
  371. console.log('error submit!!')
  372. return false
  373. }
  374. })
  375. },
  376. handleSaveEdit () {
  377. const params = {
  378. AuthList: this.permissionTreeChckedTemp,
  379. GroupList: this.accountGroupTreeCheckedTemp.map(groupId => ({ GroupId: groupId })),
  380. RoleList: this.roleListCheckedTemp,
  381. TacList: this.loginPolicyCheckedTemp,
  382. UserDesc: this.accountForm.desc,
  383. UserName: this.accountForm.name,
  384. UserPwd: this.accountForm.pwd
  385. }
  386. if (this.doesAccountExist) {
  387. this.saveEditAccount({
  388. ...params,
  389. UserId: this.userId,
  390. Status: this.accountForm.status || 0
  391. })
  392. } else {
  393. this.saveAddAccount(params)
  394. }
  395. },
  396. // 编辑账号
  397. async saveEditAccount (params) {
  398. try {
  399. const res = await editAccount(params)
  400. if (res.code === 0) {
  401. this.$message.success(res.message)
  402. setTimeout(() => {
  403. this.$store.dispatch('tagsView/delView', this.$route)
  404. this.$router.push('/account')
  405. }, 1000)
  406. } else {
  407. this.$message.error(res.message)
  408. }
  409. } catch (error) {
  410. console.log('出错了', error)
  411. }
  412. },
  413. // 新增账号
  414. async saveAddAccount (params) {
  415. try {
  416. const res = await addAccount(params)
  417. if (res.code === 0) {
  418. this.$message.success(res.message)
  419. setTimeout(() => {
  420. this.$store.dispatch('tagsView/delView', this.$route)
  421. this.$router.push('/account')
  422. }, 1000)
  423. } else {
  424. this.$message.error(res.message)
  425. }
  426. } catch (error) {
  427. console.log('出错了', error)
  428. }
  429. }
  430. }
  431. }
  432. </script>
  433. <style lang="scss" scoped>
  434. .account-edit {
  435. width: 100%;
  436. height: calc(100% - 178px);
  437. padding: 0 146px;
  438. .account-edit-header {
  439. box-sizing: border-box;
  440. width: 100%;
  441. height: 184px;
  442. margin: 32px 0 24px;
  443. padding: 32px;
  444. background: #ffffff;
  445. box-shadow: 0px 6px 7px 0px rgba(0, 0, 0, 0.06);
  446. border-radius: 16px;
  447. .title {
  448. display: flex;
  449. justify-content: space-between;
  450. flex-direction: row;
  451. position: relative;
  452. .account-status {
  453. position: absolute;
  454. left: 194px;
  455. top: 6px;
  456. }
  457. .title-left {
  458. font-size: 24px;
  459. font-weight: bold;
  460. color: #303133;
  461. }
  462. .btn-save {
  463. width: 80px;
  464. height: 40px;
  465. background: linear-gradient(0deg, #777dba, #6983be);
  466. border-radius: 6px;
  467. color: #fff;
  468. border: none;
  469. cursor: pointer;
  470. }
  471. .btn-delete {
  472. width: 80px;
  473. height: 40px;
  474. background: #f56c6c;
  475. border-radius: 6px;
  476. color: #fff;
  477. border: none;
  478. margin-right: 24px;
  479. }
  480. }
  481. .title-content {
  482. width: 100%;
  483. padding-top: 35px;
  484. box-sizing: border-box;
  485. .btn-reset-pwd {
  486. width: 72px;
  487. height: 32px;
  488. background: #6e81bc;
  489. border: none;
  490. border-radius: 6px;
  491. color: #fff;
  492. font-size: 14px;
  493. cursor: pointer;
  494. margin-top: 4px;
  495. margin-left: -25px;
  496. }
  497. }
  498. }
  499. .content {
  500. width: 100%;
  501. height: calc(100% - 274px);
  502. box-sizing: border-box;
  503. ::v-deep .el-empty {
  504. padding: 0;
  505. }
  506. .content-card {
  507. width: 100%;
  508. background: #ffffff;
  509. box-shadow: 0px 6px 7px 0px rgba(0, 0, 0, 0.06);
  510. border-radius: 16px;
  511. &.content-card-xxl {
  512. height: 856px;
  513. }
  514. &.content-card-xl {
  515. height: 720px;
  516. }
  517. &.content-card-lg {
  518. height: 704px;
  519. }
  520. &.content-card-md {
  521. height: 512px;
  522. }
  523. &.content-card-sm {
  524. height: 376px;
  525. }
  526. &.content-card-xs {
  527. height: 320px;
  528. margin-top: 24px;
  529. overflow: hidden;
  530. }
  531. }
  532. .img-onlyRead {
  533. pointer-events: none;
  534. }
  535. .last {
  536. display: flex;
  537. flex-direction: column;
  538. justify-content: space-between;
  539. }
  540. }
  541. }
  542. </style>