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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
| import { createRouter, createWebHashHistory } from 'vue-router';
|
|
| const router = createRouter({
| history: createWebHashHistory(),
| routes: [
| {
| path: '/:path(.*)*',
| redirect: '/home',
| },
| {
| path: '/home',
| name: 'home',
| component: () => import('../views/Home.vue'),
| },
| {
| path: '/certified-products',
| name: 'certified-products',
| component: () => import('../views/IndustrialSoftware.vue'),
| },
| {
| path: '/supply-demand',
| name: 'supply-demand',
| component: () => import('../views/SupplyDemand.vue'),
| },
| {
| path: '/application',
| name: 'application',
| component: () => import('../views/Application.vue'),
| },
| {
| path: '/public-service',
| name: 'public-service',
| component: () => import('../views/PublicService.vue'),
| },
| {
| path: '/news-detail/:id',
| name: 'news-detail',
| component: () => import('../views/NewsDetail.vue'),
| },
| {
| path: '/eec-label-search',
| name: 'eec-label-search',
| component: () => import('../views/EecLabel.vue'),
| },
| {
| path: '/login',
| name: 'login',
| component: () => import('../views/Login.vue'),
| },
| {
| path: '/subsidy-application',
| name: 'subsidy-application',
| component: () => import('../views/SubsidyApplication.vue'),
| },
| {
| path: '/product/:id',
| name: 'product-detail',
| component: () => import('../views/ProductDetail.vue'),
| },
| {
| path: '/payment',
| name: 'payment',
| component: () => import('../views/PaymentPage.vue'),
| },
| {
| path: '/feedback',
| name: 'feedback',
| component: () => import('../views/FeedBack.vue'),
| },
| {
| path: '/order-info',
| name: 'order-info',
| component: () => import('../views/OrderInfo.vue'),
| },
| {
| path:'/select-selpara',
| name:'select-selpara',
| component: () => import('../views/SPump/Select/ByPara2/Index.vue'),
| },
| {
| path:'/Select/PumpList/Index',
| name:'pumplist-index',
| component: () => import('../views/SPump/Select/PumpList/Index.vue'),
| },
| {
| path:'/byParas/Index',
| name:'byParas-index',
| component: () => import('../views/SPump/Detail/byParas/Index.vue'),
| },
| {
| path: '/cart',
| name: 'cart',
| component: () => import('../views/CartPage.vue'),
| },
| {
| path: '/gb19762-2025',
| name: 'gb19762-2025',
| component: () => import('../views/GB19762-2025.vue'),
| },
| {
| path: '/contact-us',
| name: 'contact-us',
| component: () => import('../views/ContactUs.vue'),
| },
| {
| path: '/product-series',
| name: 'product-series',
| component: () => import('../views/ProductSeries.vue'),
| },
| {
| path: '/policy-info',
| name: 'policy-info',
| component: () => import('../views/PolicyInfo.vue'),
|
| },
| ],
| });
| router.beforeEach((to, from, next) => {
| next();
| });
|
| export default router;
|
|