50 lines
1.1 KiB
JavaScript
50 lines
1.1 KiB
JavaScript
/*
|
|
* @Descripttion:
|
|
* @version:
|
|
* @Date: 2021-04-20 11:06:21
|
|
* @LastEditors: huzhushan@126.com
|
|
* @LastEditTime: 2021-04-21 09:38:56
|
|
* @Author: huzhushan@126.com
|
|
* @HomePage: https://huzhushan.gitee.io/vue3-element-admin
|
|
* @Github: https://github.com/huzhushan/vue3-element-admin
|
|
* @Donate: https://huzhushan.gitee.io/vue3-element-admin/donate/
|
|
*/
|
|
export default [
|
|
{
|
|
url: '/api/menus',
|
|
method: 'get',
|
|
timeout: 100,
|
|
response: {
|
|
code: 200,
|
|
message: '获取菜单成功',
|
|
data: [
|
|
{
|
|
url: '/test',
|
|
title: '测试页面',
|
|
icon: 'el-icon-location',
|
|
children: [
|
|
{
|
|
url: '/test',
|
|
title: '列表',
|
|
},
|
|
{
|
|
url: '/test/auth',
|
|
title: '权限页面',
|
|
},
|
|
{
|
|
url: '/test/nest',
|
|
title: '二级菜单',
|
|
children: [
|
|
{
|
|
url: '/test/nest',
|
|
title: '子菜单',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
},
|
|
],
|
|
},
|
|
},
|
|
]
|