java-mall-admin/mock/controller/menuManagement.js
2024-11-01 16:24:11 +08:00

52 lines
936 B
JavaScript

module.exports = [
{
url: '/menuManagement/getList',
type: 'get',
response() {
return {
code: 200,
msg: 'success',
totalCount: 999,
data: [
{
id: 'root',
label: '全部角色',
children: [
{
id: '@id',
role: 'admin',
label: 'admin角色',
},
{
id: '@id',
role: 'editor',
label: 'editor角色',
},
],
},
],
}
},
},
{
url: '/menuManagement/doEdit',
type: 'post',
response() {
return {
code: 200,
msg: '模拟保存成功',
}
},
},
{
url: '/menuManagement/doDelete',
type: 'post',
response() {
return {
code: 200,
msg: '模拟删除成功',
}
},
},
]