You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
/**
|
|
|
|
* 基础路由
|
|
|
|
* @type { *[] }
|
|
|
|
*/
|
|
|
|
export const constantRouterMap = [
|
|
|
|
{
|
|
|
|
path: '/',
|
|
|
|
name:'login',
|
|
|
|
component: () => import('@/views/login'),
|
|
|
|
meta: { title: '登录', keepAlive: false }
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: '/mine',
|
|
|
|
name:'mine',
|
|
|
|
component: () => import('@/views/mine'),
|
|
|
|
meta: { title: '我的', keepAlive: false }
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: '/assistance',
|
|
|
|
name:'assistance',
|
|
|
|
component: () => import('@/views/assistance'),
|
|
|
|
meta: { title: '诉求代办', keepAlive: false }
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: '/changePassword',
|
|
|
|
component: () => import('@/views/mine/changePassword'),
|
|
|
|
meta: { title: '修改密码', keepAlive: false }
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: '/assistanceDetail',
|
|
|
|
name:'assistanceDetail',
|
|
|
|
component: () => import('@/views/assistanceDetail'),
|
|
|
|
meta: { title: '需求详情', keepAlive: false }
|
|
|
|
},
|
|
|
|
]
|