-
-
- 填写电子票据
+
+
+ 填写电子票据
+
+
+
+
+
+ 管理学生收费
+
+
+
+
+
+ 添加收费标准
+
+
+
+
-
-
+
+ 编辑
+ 删除
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/router/index.js b/src/router/index.js
index 25eb559..c4e79e3 100644
--- a/src/router/index.js
+++ b/src/router/index.js
@@ -9,7 +9,22 @@ import Layout from "@/layout/index.vue";
const router = createRouter({
history: createWebHistory(import.meta.env.BASE_URL),
routes: [
-
+ {
+ path: "/",
+ redirect: "/home",
+ meta: { title: "首页", name: "home" },
+ component: Layout,
+ children: [
+ {
+ path: "/home",
+ name: "home",
+ component: () => import("@/pages/home/index.vue"),
+ meta: {
+ title: "首页",
+ },
+ },
+ ],
+ },
{
path: "/login",
name: "login",
@@ -27,7 +42,7 @@ const router = createRouter({
},
...FinanceBillManage,
...ReceivablesManagement
- ],
+ ]
});
export default router;
diff --git a/src/router/modules/receivables-management.js b/src/router/modules/receivables-management.js
index 29290d8..6339314 100644
--- a/src/router/modules/receivables-management.js
+++ b/src/router/modules/receivables-management.js
@@ -2,8 +2,7 @@ import Layout from "@/layout/index.vue";
const ReceivablesManagement = [
{
- path: "/",
- redirect: "/accounts",
+ path: "/accounts",
meta: { title: "应收款管理", name: "accounts" },
component: Layout,
children: [
@@ -19,7 +18,7 @@ const ReceivablesManagement = [
path: "/billCollected",
name: "BillCollected",
component: () => import("@/pages/receivables-management/billCollected.vue"),
- meta: { title: "票据收款", hidden: false },
+ meta: { title: "票据收款", },
},
{
path: "/bill-bill",