mirror of
https://gitee.com/chu1204505056/vue-admin-beautiful.git
synced 2025-04-06 03:58:00 +08:00
52 lines
984 B
JavaScript
52 lines
984 B
JavaScript
export default [
|
|
{
|
|
url: "/menuManagement/getTree",
|
|
type: "post",
|
|
response: (config) => {
|
|
return {
|
|
code: 200,
|
|
msg: "success",
|
|
totalCount: 999,
|
|
data: [
|
|
{
|
|
id: "root",
|
|
label: "全部角色",
|
|
children: [
|
|
{
|
|
id: "@id",
|
|
permission: "admin",
|
|
label: "admin角色",
|
|
},
|
|
{
|
|
id: "@id",
|
|
permission: "editor",
|
|
label: "editor角色",
|
|
},
|
|
],
|
|
},
|
|
],
|
|
};
|
|
},
|
|
},
|
|
{
|
|
url: "/menuManagement/doEdit",
|
|
type: "post",
|
|
response: (config) => {
|
|
return {
|
|
code: 200,
|
|
msg: "模拟保存成功",
|
|
};
|
|
},
|
|
},
|
|
{
|
|
url: "/menuManagement/doDelete",
|
|
type: "post",
|
|
response: (config) => {
|
|
return {
|
|
code: 200,
|
|
msg: "模拟删除成功",
|
|
};
|
|
},
|
|
},
|
|
];
|