inleft
2022-02-09 9bcb19959eeb9da9bde2561e7278f6d0a55eb151
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
<template>
  <a-modal
    title="授权菜单"
    :width="600"
    :visible="visible"
    :confirmLoading="confirmLoading"
    @ok="handleSubmit"
    @cancel="handleCancel"
  >
    <a-spin :spinning="formLoading">
      <a-form :form="form">
 
        <a-form-item
          label="菜单权限"
          :labelCol="labelCol"
          :wrapperCol="wrapperCol">
 
          <a-tree
            v-model="checkedKeys"
            multiple
            checkable
            :auto-expand-parent="autoExpandParent"
            :expanded-keys="expandedKeys"
            :tree-data="menuTreeData"
            :selected-keys="selectedKeys"
            :replaceFields="replaceFields"
            @expand="onExpand"
            @check="onCheck"
          />
        </a-form-item>
 
      </a-form>
 
    </a-spin>
  </a-modal>
</template>
 
<script>
  import { SysMenuTreeForGrant } from '@/api/modular/system/menuManage'
  import { sysRoleOwnMenu, sysRoleGrantMenu } from '@/api/modular/system/roleManage'
 
  export default {
    data() {
      return {
        labelCol: {
          style: { 'padding-right': '20px' },
          xs: { span: 24 },
          sm: { span: 5 }
        },
        wrapperCol: {
          xs: { span: 24 },
          sm: { span: 15 }
        },
        menuTreeData: [],
        expandedKeys: [],
        checkedKeys: [],
        visible: false,
        confirmLoading: false,
        formLoading: true,
        autoExpandParent: true,
        selectedKeys: [],
        subValues: [],
        roleEntity: [],
        replaceFields: {
          key: 'id'
        },
        form: this.$form.createForm(this),
        commitKeys: [],
        leastChilds: []
      }
    },
    methods: {
      // 初始化方法
      roleMenu(record) {
        this.formLoading = true
        this.roleEntity = record
        this.visible = true
        this.getMenuTree()
      },
 
      /**
       * 获取菜单列表
       */
      getMenuTree() {
        const _this = this
        SysMenuTreeForGrant().then((res) => {
          if (res.success) {
            _this.menuTreeData = res.data
            _this.getLeastChilds(res.data)
            // 默认展开目录级
            _this.menuTreeData.forEach(item => {
              _this.expandedKeys.push(item.id)
            })
 
            _this.expandedMenuKeys(_this.roleEntity)
          }
        })
      },
 
      getLeastChilds(data) {
        for (let i = 0; i < data.length; i++) {
          this.pushLeastChilds(data[i])
        }
      },
 
      pushLeastChilds(e) {
        if (e.children.length > 0) {
          this.getLeastChilds(e.children)
          return
        }
        this.leastChilds.push(e.id)
      },
 
      /**
       * 此角色已有菜单权限
       */
      expandedMenuKeys(record) {
        const _this = this
        sysRoleOwnMenu({ id: record.id }).then((res) => {
          if (res.success) {
            _this.pickCheckedKeys(res.data)
            _this.commitKeys = res.data
          }
          _this.formLoading = false
        })
      },
 
      pickCheckedKeys(data) {
        for (let i = 0; i < data.length; i++) {
          if (this.leastChilds.includes(data[i])) {
            this.checkedKeys.push(data[i])
          }
        }
      },
 
      onExpand(expandedKeys) {
        this.expandedKeys = expandedKeys
        this.autoExpandParent = false
      },
 
      onCheck(checkedKeys, info) {
        this.checkedKeys = checkedKeys
        this.commitKeys = checkedKeys.concat(info.halfCheckedKeys)
      },
 
      onSelect(selectedKeys, info) {
        console.log(selectedKeys)
        console.log(info)
        this.selectedKeys = selectedKeys
      },
 
      handleSubmit() {
        const _this = this
        const { form: { validateFields } } = this
        this.confirmLoading = true
        validateFields((errors, values) => {
          if (!errors) {
            sysRoleGrantMenu({ id: _this.roleEntity.id, grantMenuIdList: _this.commitKeys }).then((res) => {
              if (res.success) {
                _this.$message.success('授权成功')
                _this.confirmLoading = false
                _this.$emit('ok', values)
                _this.handleCancel()
              } else {
                _this.$message.error('授权失败:' + res.message)
              }
            }).finally((res) => {
              _this.confirmLoading = false
            })
          } else {
            _this.confirmLoading = false
          }
        })
      },
      handleCancel() {
        // 清空已选择的
        this.checkedKeys = []
        // 清空已展开的
        this.expandedKeys = []
        this.visible = false
      }
    }
  }
</script>