12345678910111213141516171819202122232425262728293031323334353637 |
- export const devMenu = [
- {
- path: '/test',
- name: '测试',
- platform: 'admin',
- children: [
- {
- path: '/list',
- name: '测试列表',
- },
- {
- path: '/detail',
- name: '测试详情',
- },
- ],
- },
- {
- path: '/doctor',
- name: '医生管理',
- platform: 'doctor',
- children: [
- {
- path: '/list',
- name: '医生列表',
- },
- // {
- // path: '/detail',
- // name: '测试详情',
- // },
- {
- path: '/nurse',
- name: '护士列表',
- },
- ],
- },
- ];
|