beelink/src/router/index.ts
2020-10-10 11:33:21 +08:00

122 lines
2.8 KiB
TypeScript

import { createRouter, createWebHistory, RouteRecordRaw } from 'vue-router'
import Login from "../views/login/Login.vue"
const routes: Array<RouteRecordRaw> = [
{
path:"/mine",
name:"Mine",
component: () => import("../layout/Mine.vue"),
children: [
{
path:"archives",
name: "Archives",
component: () => import("../views/mine/Archives.vue")
},
{
path:"webcast",
name: "Webcast",
component: () => import("../views/mine/ReleaseWebcast.vue")
},
{
path:"video",
name: "Video",
component: () => import("../views/mine/ReleaseVideo.vue")
},
{
path:"wallet",
name: "Wallet",
component: () => import("../views/mine/Wallet.vue")
},
{
path:"transaction",
name: "Transaction",
component: () => import("../views/mine/Transaction.vue")
},
{
path:"transactionxq",
name: "Transactiondetail",
component: () => import("../views/mine/Transactiondetail.vue")
},
{
path:"cashoutxq",
name: "Cashoutdetail",
component: () => import("../views/mine/Cashoutdetail.vue")
},
{
path:"cashout",
name: "Cashout",
component: () => import("../views/mine/Cashout.vue")
},
{
path:"addaccount",
name: "Addaccount",
component: () => import("../views/mine/Addaccount.vue")
},
{
path:"liststatistic",
name: "Liststatistic",
component: () => import("../views/mine/Liststatistic.vue")
},
{
path:"aboutus",
name: "Aboutus",
component: () => import("../views/mine/Aboutus.vue")
}
]
},
{
path:"/regime",
name:"Regime",
component: () => import("../layout/Regime.vue"),
children: [
{
path: "video",
component: () => import("../views/regime/Video.vue")
},
{
path: "videoinfo",
component: () => import("../views/regime/VideoInfo.vue")
},
{
path: "subscriber",
component: () => import("../views/regime/Subscriber.vue")
},
{
path: "live",
component: () => import("../views/regime/Live.vue")
},
{
path: "livedetail",
component: () => import("../views/regime/Livedetail.vue")
},
{
path: "liveing",
component: () => import("../views/regime/Liveing.vue")
}
]
},
{
path: '/',
name: 'Login',
component:Login
},
{
path: '/sign',
name: 'Sign',
component: () => import('../views/login/Sign.vue')
},
{
path: '/reset',
name: 'Reset',
component: () => import('../views/login/Reset.vue')
},
]
const router = createRouter({
history: createWebHistory(process.env.BASE_URL),
routes
})
export default router