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
| import { RouteConfig } from "types";
| import Layout from "@/layout/index.vue";
|
| const routers: RouteConfig[] = [
| {
| path: "/oneThree",
| name: "oneThree",
| meta: {
| title: "综合查询",
| icon: "menu-house",
| sort: 2
| },
| redirect: "/oneThree/comprehensiveQuery",
| component: Layout,
| children: [
| {
| path: "/oneThree/comprehensive",
| name: "comprehensive",
| meta: {
| title: "综合查询",
| sort: 17
| },
| component: () => import("@/views/oneThree/comprehensive/index.vue")
| },
|
| {
| path: "/oneThree/actualPopulation",
| name: "actual-population",
| meta: {
| title: "实有人口",
| sort: 14
| },
| component: () => import("@/views/oneThree/actualPopulation/index.vue")
| },
| {
| path: "/oneThree/house",
| name: "oneThree-house",
| meta: {
| title: "实有房屋",
| sort: 13
| },
| component: () => import("@/views/oneThree/house/index.vue")
| },
| {
| path: "/oneThree/unit",
| name: "oneThree-unit",
| meta: {
| title: "实有单位",
| sort: 12
| },
| component: () => import("@/views/oneThree/unit/index.vue")
| }
| ]
| }
| ];
|
| export default routers;
|
|