|
|
@@ -6,6 +6,7 @@ const Background = () => import('views/admin/Background')
|
|
|
// 用户后台主页
|
|
|
const MyProfile = () => import('views/my/MyProfile')
|
|
|
const MyRecord = () => import('views/my/MyRecord')
|
|
|
+const MyMessage = () => import('views/my/MyMessage')
|
|
|
const MyOAuth = () => import('views/my/MyOAuth')
|
|
|
|
|
|
export default {
|
|
|
@@ -33,6 +34,14 @@ export default {
|
|
|
component: MyRecord,
|
|
|
meta: { needAuth: true, roles: ['tnb_admin', 'tnb_user', 'tnb_disk'] }
|
|
|
},
|
|
|
+ {
|
|
|
+ path: '/bg/account/message',
|
|
|
+ name: 'MyMessage',
|
|
|
+ title: '我的消息',
|
|
|
+ icon: 'el-icon-user',
|
|
|
+ component: MyMessage,
|
|
|
+ meta: { needAuth: true, roles: ['tnb_admin', 'tnb_user', 'tnb_disk'] }
|
|
|
+ },
|
|
|
{
|
|
|
path: '/bg/account/oauth',
|
|
|
name: 'OAuth',
|