1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- export const index = {
- name: '首页',
- path: '/',
- };
- export const menu = {
- name: '菜单管理',
- path: '/menu/index',
- };
- export const department = {
- name: '部门管理',
- path: '/department/index',
- };
- export const permission = {
- name: '权限管理',
- path: '/permission/index',
- };
- export const adminUser = {
- name: '机构管理员',
- path: '/adminUser/index',
- };
- export const business = {
- name: '业务管理员',
- path: '/business/index',
- };
- export const vip = {
- name: 'vip用户',
- path: '/vip/index',
- };
- export const user = {
- name: '用户管理',
- children: [
- {
- name: '个人&企业用户管理',
- path: '/user/index',
- },
- {
- name: '专家用户管理',
- path: '/user/exportIndex',
- },
- {
- name: '临时用户管理',
- path: '/user/temporaryIndex',
- },
- ],
- };
- export const duijiehui = {
- name: '对接会',
- path: '/duijiehui/index',
- };
- export const enterpriseProduct = {
- name: '产品供求审核管理',
- path: '/enterpriseProduct/index',
- };
- export const enterpriseTrans = {
- name: '产品供求交易状态审核管理',
- path: '/enterpriseTrans/index',
- };
- export const technical = {
- name: '技术培训',
- path: '/technical/index',
- };
- export const defaultMenu = {
- name: '平台字典管理',
- path: '/dictionary/index',
- };
|