1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
| import Vue from "vue";
| import VueRouter from "vue-router";
| import { getEnvInfo } from "@/utils/utils";
| Vue.use(VueRouter);
| // 管控额度管理列表
| const QuotaControlList = () =>
| import("@/views/quotaControlManage/QuotaControlList.vue");
|
| // 访问web前缀
| const { webPrefix } = getEnvInfo();
| const routes = [
| {
| path: "/",
| redirect: "/comm"
| },
| {
| path: "/comm",
| component: () => import("@/pages/CommView"),
| children: [
| {
| path: 'apply',
| component: () => import('@/pages/Applys')
| },
| {
| path: "controlQuato",
| component: () => import("@/pages/controlQuato/index"),
| meta: {
| title: "管控额度管理",
| keepAlive: true
| }
| },
| {
| path: "controlQuatoStage",
| component: () => import("@/pages/controlQuatoStage/index"),
| meta: {
| title: "管控额度审核",
| keepAlive: true
| }
| },
| {
| path: "controlQuatoTaskadjustment",
| component: () => import("@/pages/controlQuatoTaskAdjustment/index"),
| meta: {
| title: "管控额度任务调整",
| keepAlive: true
| }
| },
| {
| path: "customerQuato",
| component: () => import("@/pages/customerQuato/index"),
| meta: {
| title: "客户额度管理",
| keepAlive: true
| }
| },
| {
| path: "customerQuatoStage",
| component: () => import("@/pages/customerQuatoStage/index"),
| meta: {
| title: "客户额度审核",
| keepAlive: true
| }
| },
| {
| path: "customerQuatoTaskadjustment",
| component: () => import("@/pages/customerQuatoTaskAdjustment/index"),
| meta: {
| title: "客户额度任务调整",
| keepAlive: true
| }
| },
| ]
| }
| ];
|
| const router = new VueRouter({
| mode: "hash",
| // base: process.env.BASE_URL,
| base: process.env.BASE_URL || webPrefix,
| routes
| });
| export { routes };
| export default router;
|
|