index.vue 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210
  1. <!--
  2. * @Author: zk
  3. * @Date: 2022-02-09 15:47:09
  4. * @LastEditTime: 2022-04-11 16:05:37
  5. * @LastEditors: your name
  6. * @Description: 用户组树
  7. -->
  8. <template>
  9. <div class="userGroupTree">
  10. <div class="head">
  11. <p>{{ title }}</p>
  12. </div>
  13. <div :class="type ? 'radioBg':''" class="content">
  14. <el-scrollbar style="height: 100%" wrap-style="overflow-x:hidden;">
  15. <el-tree ref="tree" :data="data" show-checkbox :default-props="defaultProps" :default-expanded-keys="defaultExpandedKeys" node-key="GroupId" highlight-current @check="currentChange">
  16. <span slot-scope="{ data }" :title="data.GroupName" class="custom-tree-node">
  17. {{ data.GroupName }}
  18. </span>
  19. </el-tree>
  20. </el-scrollbar>
  21. </div>
  22. </div>
  23. </template>
  24. <script>
  25. import { GetGroupTree } from '@/api/AccountGroup'
  26. import { translateDataToTreeAll } from '@/utils/validate'
  27. export default {
  28. name: 'UserGroupTree',
  29. props: {
  30. title: {
  31. // 标题
  32. type: String,
  33. default: ''
  34. },
  35. checkedKeys: {
  36. // 已选中
  37. type: Array,
  38. default: () => []
  39. },
  40. type: {
  41. type: Boolean,
  42. default: false
  43. },
  44. defaultProps: {
  45. type: Object,
  46. default: () => ({
  47. children: 'children',
  48. label: 'GroupName'
  49. })
  50. },
  51. checkDisabled: {
  52. type: Number,
  53. default: 0
  54. }
  55. },
  56. data () {
  57. return {
  58. data: [], // tree数据
  59. checkedList: [], // 已选中数据
  60. pageIndex: 1,
  61. pageSize: 20,
  62. defaultExpandedKeys: [-1],
  63. getExpandedKeysStep: [false, false],
  64. userGroupList: [],
  65. }
  66. },
  67. watch: {
  68. checkedKeys: {
  69. handler (val) {
  70. this.checkedList = val
  71. this.$refs.tree.setCheckedKeys(val)
  72. this.getExpandedKeysStep.splice(0, 1, true)
  73. },
  74. deep: true
  75. },
  76. getExpandedKeysStep: {
  77. handler (val) {
  78. if (val.every(v => v)) {
  79. this.defaultExpandedKeys = [-1]
  80. this.checkedKeys.forEach(key => {
  81. if (key !== -1) {
  82. const group = this.userGroupList.find(item => item.GroupId == key)
  83. const GroupUpid = group.GroupUpid
  84. if (!this.defaultExpandedKeys.includes(GroupUpid)) {
  85. this.defaultExpandedKeys.push(GroupUpid)
  86. }
  87. }
  88. })
  89. }
  90. },
  91. deep: true
  92. }
  93. },
  94. created () {
  95. this.getGroupTree()
  96. },
  97. methods: {
  98. // 复选框选中
  99. currentChange (data, isChecked) {
  100. if (this.type) {
  101. const { GroupId } = data
  102. this.$emit('getTreeData', this.$refs.tree.getCheckedNodes())
  103. if (isChecked) {
  104. const checked = [GroupId]
  105. this.$refs.tree.setCheckedKeys(checked)
  106. }
  107. } else {
  108. const arr = this.$refs.tree.getCheckedNodes()
  109. this.$emit('getTreeData', arr)
  110. }
  111. },
  112. async getGroupTree () {
  113. const result = await GetGroupTree({
  114. QueryName: '',
  115. PageIndex: this.pageIndex,
  116. PageSize: this.pageSize
  117. })
  118. const datas = result.returnData
  119. this.userGroupList = datas
  120. this.getExpandedKeysStep.splice(1, 1, true)
  121. const tree = translateDataToTreeAll(datas, 'GroupUpid', 'GroupId')
  122. const setDisabled = (tree, key) => {
  123. if (key) {
  124. tree.find(node => {
  125. if (node.GroupId === key) {
  126. node.disabled = true
  127. node.children?.length && setDisabled(node.children)
  128. return true
  129. } else if (node.children?.length) {
  130. setDisabled(node.children, key)
  131. }
  132. })
  133. } else {
  134. tree.forEach(node => {
  135. node.disabled = true
  136. node.children?.length && setDisabled(node.children)
  137. })
  138. }
  139. }
  140. this.checkDisabled && setDisabled(tree, this.checkDisabled)
  141. const obj = {
  142. AuthCount: 0,
  143. GroupId: -1,
  144. GroupName: this.accountGroupType,
  145. GroupUpid: 0,
  146. QueryTarget: 0,
  147. Status: 0,
  148. UserCount: 0,
  149. disabled: true,
  150. children: tree
  151. }
  152. this.data = [obj]
  153. }
  154. }
  155. }
  156. </script>
  157. <style lang="scss" scoped>
  158. .userGroupTree {
  159. width: 100%;
  160. height: 100%;
  161. background: #ffffff;
  162. -webkit-box-shadow: 0px 6px 7px 0px rgb(0 0 0 / 6%);
  163. box-shadow: 0px 6px 7px 0px rgb(0 0 0 / 6%);
  164. border-radius: 16px;
  165. padding: 0 32px 0 32px;
  166. .head {
  167. width: 100%;
  168. height: 90px;
  169. display: flex;
  170. align-items: center;
  171. p {
  172. margin: 0;
  173. font-size: 24px;
  174. font-family: Microsoft YaHei;
  175. font-weight: bold;
  176. color: #303133;
  177. }
  178. }
  179. ::v-deep .content {
  180. width: 100%;
  181. height: calc(100% - 112px);
  182. box-sizing: border-box;
  183. .custom-tree-node {
  184. margin-left: 10px;
  185. font-size: 14px;
  186. max-width: 150px;
  187. white-space: nowrap;
  188. overflow: hidden;
  189. text-overflow: ellipsis;
  190. font-family: Microsoft YaHei;
  191. }
  192. }
  193. ::v-deep .radioBg {
  194. .el-checkbox__inner {
  195. border-radius: 50%;
  196. &::after {
  197. width: 5px;
  198. height: 5px;
  199. background: #ffffff;
  200. border-radius: 50%;
  201. top: 3px;
  202. left: 3px;
  203. }
  204. }
  205. }
  206. }
  207. </style>