tanghaolin
2025-04-18 13c22bd501286d02658f0812c3f19285cfa23024
src/router/index.ts
@@ -1,5 +1,6 @@
import { createRouter, createWebHashHistory } from 'vue-router';
const router = createRouter({
   history: createWebHashHistory(),
   routes: [
@@ -76,8 +77,36 @@
         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'),
      },
   ],
});
router.beforeEach((to, from, next) => {
   next();
});
export default router;