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
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
| <template>
| <div class="system-edit-role-container">
| <el-dialog title="修改角色" v-model="isShowDialog" width="769px">
| <el-form :model="ruleForm" size="default" label-width="90px">
| <el-row :gutter="35">
| <el-col :xs="24" :sm="12" :md="12" :lg="12" :xl="12" class="mb20">
| <el-form-item label="角色名称">
| <el-input v-model="ruleForm.roleName" placeholder="请输入角色名称" clearable></el-input>
| </el-form-item>
| </el-col>
| <el-col :xs="24" :sm="12" :md="12" :lg="12" :xl="12" class="mb20">
| <el-form-item label="角色标识">
| <template #label>
| <el-tooltip effect="dark" content="用于 `router/route.ts` meta.roles" placement="top-start">
| <span>角色标识</span>
| </el-tooltip>
| </template>
| <el-input v-model="ruleForm.roleSign" placeholder="请输入角色标识" clearable></el-input>
| </el-form-item>
| </el-col>
| <el-col :xs="24" :sm="12" :md="12" :lg="12" :xl="12" class="mb20">
| <el-form-item label="排序">
| <el-input-number v-model="ruleForm.sort" :min="0" :max="999" controls-position="right" placeholder="请输入排序" class="w100" />
| </el-form-item>
| </el-col>
| <el-col :xs="24" :sm="12" :md="12" :lg="12" :xl="12" class="mb20">
| <el-form-item label="角色状态">
| <el-switch v-model="ruleForm.status" inline-prompt active-text="启" inactive-text="禁"></el-switch>
| </el-form-item>
| </el-col>
| <el-col :xs="24" :sm="24" :md="24" :lg="24" :xl="24" class="mb20">
| <el-form-item label="角色描述">
| <el-input v-model="ruleForm.describe" type="textarea" placeholder="请输入角色描述" maxlength="150"></el-input>
| </el-form-item>
| </el-col>
| <el-col :xs="24" :sm="24" :md="24" :lg="24" :xl="24" class="mb20">
| <el-form-item label="菜单权限">
| <el-tree :data="menuData" :props="menuProps" :default-checked-keys="[112, 113]" node-key="id" show-checkbox class="menu-data-tree" />
| </el-form-item>
| </el-col>
| </el-row>
| </el-form>
| <template #footer>
| <span class="dialog-footer">
| <el-button @click="onCancel" size="default">取 消</el-button>
| <el-button type="primary" @click="onSubmit" size="default">修 改</el-button>
| </span>
| </template>
| </el-dialog>
| </div>
| </template>
|
| <script lang="ts">
| import { reactive, toRefs, defineComponent } from 'vue';
|
| // 定义接口来定义对象的类型
| interface MenuDataTree {
| id: number;
| label: string;
| children?: MenuDataTree[];
| }
| interface DialogRow {
| roleName: string;
| roleSign: string;
| sort: number;
| status: boolean;
| describe: string;
| }
| interface RoleState {
| isShowDialog: boolean;
| ruleForm: DialogRow;
| menuData: Array<MenuDataTree>;
| menuProps: {
| children: string;
| label: string;
| };
| }
|
| export default defineComponent({
| name: 'systemEditRole',
| setup() {
| const state = reactive<RoleState>({
| isShowDialog: false,
| ruleForm: {
| roleName: '', // 角色名称
| roleSign: '', // 角色标识
| sort: 0, // 排序
| status: true, // 角色状态
| describe: '', // 角色描述
| },
| menuData: [],
| menuProps: {
| children: 'children',
| label: 'label',
| },
| });
| // 打开弹窗
| const openDialog = (row: DialogRow) => {
| state.ruleForm = row;
| state.isShowDialog = true;
| getMenuData();
| };
| // 关闭弹窗
| const closeDialog = () => {
| state.isShowDialog = false;
| };
| // 取消
| const onCancel = () => {
| closeDialog();
| };
| // 新增
| const onSubmit = () => {
| closeDialog();
| };
| // 获取菜单结构数据
| const getMenuData = () => {
| state.menuData = [
| {
| id: 1,
| label: '系统管理',
| children: [
| {
| id: 11,
| label: '菜单管理',
| children: [
| {
| id: 111,
| label: '菜单新增',
| },
| {
| id: 112,
| label: '菜单修改',
| },
| {
| id: 113,
| label: '菜单删除',
| },
| {
| id: 114,
| label: '菜单查询',
| },
| ],
| },
| {
| id: 12,
| label: '角色管理',
| children: [
| {
| id: 121,
| label: '角色新增',
| },
| {
| id: 122,
| label: '角色修改',
| },
| {
| id: 123,
| label: '角色删除',
| },
| {
| id: 124,
| label: '角色查询',
| },
| ],
| },
| {
| id: 13,
| label: '用户管理',
| children: [
| {
| id: 131,
| label: '用户新增',
| },
| {
| id: 132,
| label: '用户修改',
| },
| {
| id: 133,
| label: '用户删除',
| },
| {
| id: 134,
| label: '用户查询',
| },
| ],
| },
| ],
| },
| {
| id: 2,
| label: '权限管理',
| children: [
| {
| id: 21,
| label: '前端控制',
| children: [
| {
| id: 211,
| label: '页面权限',
| },
| {
| id: 212,
| label: '页面权限',
| },
| ],
| },
| {
| id: 22,
| label: '后端控制',
| children: [
| {
| id: 221,
| label: '页面权限',
| },
| ],
| },
| ],
| },
| ];
| };
| return {
| openDialog,
| closeDialog,
| onCancel,
| onSubmit,
| ...toRefs(state),
| };
| },
| });
| </script>
|
| <style scoped lang="scss">
| .system-edit-role-container {
| .menu-data-tree {
| width: 100%;
| border: 1px solid var(--el-border-color);
| border-radius: var(--el-input-border-radius, var(--el-border-radius-base));
| padding: 5px;
| }
| }
| </style>
|
|