File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed
views/system/sensitiveWord Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ export interface MenuVO {
20
20
21
21
// 查询菜单(精简)列表
22
22
export const getSimpleMenusList = ( ) => {
23
- return request . get ( { url : '/system/menu/list-all- simple' } )
23
+ return request . get ( { url : '/system/menu/simple-list ' } )
24
24
}
25
25
26
26
// 查询菜单列表
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ export const getRolePage = async (params: PageParam) => {
24
24
25
25
// 查询角色(精简)列表
26
26
export const getSimpleRoleList = async ( ) : Promise < RoleVO [ ] > => {
27
- return await request . get ( { url : '/system/role/list-all- simple' } )
27
+ return await request . get ( { url : '/system/role/simple-list ' } )
28
28
}
29
29
30
30
// 查询角色详情
Original file line number Diff line number Diff line change 14
14
<el-radio-group v-model =" formData.status" >
15
15
<el-radio
16
16
v-for =" dict in getIntDictOptions(DICT_TYPE.COMMON_STATUS)"
17
- :key =" dict.value"
17
+ :key =" dict.value as number "
18
18
:label =" dict.value"
19
19
>
20
20
{{ dict.label }}
Original file line number Diff line number Diff line change 32
32
<el-select v-model =" queryParams.status" clearable placeholder =" 请选择启用状态" >
33
33
<el-option
34
34
v-for =" dict in getIntDictOptions(DICT_TYPE.COMMON_STATUS)"
35
- :key =" dict.value"
35
+ :key =" dict.value as number "
36
36
:label =" dict.label"
37
37
:value =" dict.value"
38
38
class =" !w-240px"
You can’t perform that action at this time.
0 commit comments