我的钱包 关于 列表

This commit is contained in:
asd
2020-09-29 16:51:42 +08:00
parent 8bf0188105
commit db2eec98a0
32 changed files with 2158 additions and 27 deletions

View File

@@ -1,5 +1,4 @@
import { createRouter, createWebHistory, RouteRecordRaw } from 'vue-router'
import Home from '../views/Home.vue'
import Login from "../views/login/Login.vue"
const routes: Array<RouteRecordRaw> = [
@@ -22,6 +21,46 @@ const routes: Array<RouteRecordRaw> = [
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")
}
]
},