37 lines
766 B
JavaScript
37 lines
766 B
JavaScript
/*
|
|
* @Author: Haijun Zhang
|
|
* @Date: 2022-11-04 15:40:39
|
|
* @LastEditTime: 2022-11-04 15:54:34
|
|
* @LastEditors: Haijun Zhang
|
|
* @Description:
|
|
* @FilePath: \cmc-web\webs\aos-web\src\router\static.js
|
|
*/
|
|
|
|
export default [
|
|
{
|
|
path: '/resource_dashboard',
|
|
meta: {
|
|
title: '资源概览',
|
|
noTag: true
|
|
},
|
|
component: () => import('views/configs/setting_dashboard/index.vue')
|
|
},
|
|
// 旧主页
|
|
{
|
|
path: '/Oldresource_dashboard',
|
|
meta: {
|
|
title: '资源概览',
|
|
noTag: true
|
|
},
|
|
component: () => import('views/configs/setting_dashboard/indexOld.vue')
|
|
},
|
|
{
|
|
name: 'ProfileMessage',
|
|
path: '/message',
|
|
meta: {
|
|
title: '我的消息'
|
|
},
|
|
component: () => import('views/message/list.vue')
|
|
}
|
|
]
|