gaoluyang
2025-02-11 a793a82b2d9ab8c383145db7fad57c26541b097a
铜材料下单子页面路由配置
已修改2个文件
24 ■■■■ 文件已修改
src/router/index.js 22 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/business/materialOrder/index.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/router/index.js
@@ -94,21 +94,23 @@
export const dynamicRoutes = [
  {
    // 原材料报检
    path: '/business/rawMaterialInspection',
    component: Layout,
  },
  {
    // 原材料检验下单
    path: '/business/materialOrder',
    path: '/rawMaterialInspection',
    component: Layout,
    hidden: true,
  },
  {
    // 原材料下单
    path: '/materialOrder',
    component: Layout,
    hidden: true,
    permissions: ['business:order'],
    children: [
      {
        // 铜单丝下单
        path: '/customsInspection',
        // 铜材料下单
        path: 'customsInspection',
        component: () => import('@/views/business/materialOrder/customsInspection'),
        name: '铜单丝下单',
        meta: { title: '铜单丝下单', activeMenu: '/business/materialOrder' }
        name: 'customsInspection',
        meta: { title: '铜材料下单', activeMenu: '/business/materialOrder' }
      }
    ]
  },
src/views/business/materialOrder/index.vue
@@ -900,7 +900,7 @@
    },
    // 铜材料下单
    copper () {
      this.$router.push({ path: "/business/materialOrder/customsInspection" });
      this.$router.push("/materialOrder/customsInspection");
    },
    // 打开标签打印弹框
    openPrint () {