From 0f49a23a9d4dc7d3eb9a7309f8cd85a316cd4d97 Mon Sep 17 00:00:00 2001 From: zhangyanpeng <bob.zhang@highdatas.com> Date: 星期四, 30 四月 2020 17:39:22 +0800 Subject: [PATCH] 功能调整 --- src/router/index.ts | 43 ++++++++++++++++++++++++++++++------------- 1 files changed, 30 insertions(+), 13 deletions(-) diff --git a/src/router/index.ts b/src/router/index.ts index 15898bd..99df1cb 100644 --- a/src/router/index.ts +++ b/src/router/index.ts @@ -9,6 +9,15 @@ import calendarTask from "../views/calendarTask.vue"; import square from "../components/square.vue"; + +import actualPayment from "../components/finance/actualPayment.vue"; +import completeStatistics from "../components/finance/completeStatistics.vue"; +import partTimeExpenses from "../components/finance/partTimeExpenses.vue"; +import costAccounting from "../components/finance/costAccounting.vue"; +import collectionStatistics from "../components/finance/collectionStatistics.vue"; + + + Vue.use(VueRouter); const routes = [ @@ -66,34 +75,42 @@ home: square } }, + { - path: "project3", - name: "project3", + path: "actualPayment", + name: "actualPayment", components:{ - home: Project + home: actualPayment } }, { - path: "project4", - name: "project4", + path: "completeStatistics", + name: "completeStatistics", components:{ - home: Project + home: completeStatistics } }, { - path: "project5", - name: "project5", + path: "partTimeExpenses", + name: "partTimeExpenses", components:{ - home: Project + home: partTimeExpenses } }, { - path: "project6", - name: "project6", + path: "costAccounting", + name: "costAccounting", components:{ - home: Project + home: costAccounting } - } + }, + { + path: "collectionStatistics", + name: "collectionStatistics", + components:{ + home: collectionStatistics + } + }, ] }, -- Gitblit v1.8.0