|
|
@@ -1,4 +1,4 @@
|
|
|
-const Index = () => import('views/Index')
|
|
|
+const Index = () => import('views/vod/Index')
|
|
|
// ********************************************************************************************************************
|
|
|
// 用户前台主页
|
|
|
// ********************************************************************************************************************
|
|
|
@@ -9,7 +9,7 @@ const UserAlbum = () => import('views/user/Home')
|
|
|
const UserRelation = () => import('views/user/UserRelation')
|
|
|
|
|
|
export default {
|
|
|
- path: '/user',
|
|
|
+ path: '/vod/user',
|
|
|
name: 'Index',
|
|
|
component: Index,
|
|
|
meta: { needAuth: false },
|
|
|
@@ -21,37 +21,37 @@ export default {
|
|
|
meta: { needAuth: false }
|
|
|
},
|
|
|
{
|
|
|
- path: '/user/:id',
|
|
|
+ path: '/vod/user/:id',
|
|
|
name: 'UserHome',
|
|
|
component: UserHome,
|
|
|
meta: { needAuth: false }
|
|
|
},
|
|
|
{
|
|
|
- path: '/user/:id/video',
|
|
|
+ path: '/vod/user/:id/video',
|
|
|
name: 'UserVideo',
|
|
|
component: UserVideo,
|
|
|
meta: { needAuth: false }
|
|
|
},
|
|
|
{
|
|
|
- path: '/user/:id/image',
|
|
|
+ path: '/vod/user/:id/image',
|
|
|
name: 'UserImage',
|
|
|
component: UserImage,
|
|
|
meta: { needAuth: false }
|
|
|
},
|
|
|
{
|
|
|
- path: '/user/:id/album',
|
|
|
+ path: '/vod/user/:id/album',
|
|
|
name: 'UserAlbum',
|
|
|
component: UserAlbum,
|
|
|
meta: { needAuth: false }
|
|
|
},
|
|
|
{
|
|
|
- path: '/user/:id/following',
|
|
|
+ path: '/vod/user/:id/following',
|
|
|
name: 'UserFollowing',
|
|
|
component: UserRelation,
|
|
|
meta: { needAuth: false }
|
|
|
},
|
|
|
{
|
|
|
- path: '/user/:id/follower',
|
|
|
+ path: '/vod/user/:id/follower',
|
|
|
name: 'UserFollower',
|
|
|
component: UserRelation,
|
|
|
meta: { needAuth: false }
|