From 923f77eb07996e280a78ca2825754cf4e9d8bf41 Mon Sep 17 00:00:00 2001 From: 44673626 <44673626@qq.com> Date: Sat, 8 Jan 2022 11:15:51 +0800 Subject: [PATCH] =?UTF-8?q?=E7=BA=A2=E6=97=97202008?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- vue/src/router/modules/hq_out_order.js | 64 ++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 vue/src/router/modules/hq_out_order.js diff --git a/vue/src/router/modules/hq_out_order.js b/vue/src/router/modules/hq_out_order.js new file mode 100644 index 00000000..efa9f133 --- /dev/null +++ b/vue/src/router/modules/hq_out_order.js @@ -0,0 +1,64 @@ +//大众-FIS结算-路由 +import Layout from '@/layout' + +const hqOutOrderDataRouter = { + path: '/cpat-order', + component: Layout, + redirect: 'pg', + name: '业务数据', + //hidden: true, + meta: { + //requiresAuth: true, + title: '红旗出库单管理', + index: 0, + type: 'crm', + icon: '单据导入', + keepAlive: false, + }, + children: [ + { + path: 'hq-h-outorder', + component: () => import('@/views/ux/billManage/vwOutOrder/index'), + name: 'SettleAccount',//命名路由 + meta: { + title: '大众准时化出库单', + roles: ['SettleAccount.SettleAccounts'],//控制页面角色(可以设置多个角色) + icon: '结算' + } + }, + { + path: 'hq-m-outorder', + component: () => import('@/views/ux/billManage/kanbanOutOrder/index'), + name: 'SettleAccount',//命名路由 + meta: { + title: '大众看板出库单', + roles: ['SettleAccount.SettleAccounts'],//控制页面角色(可以设置多个角色) + icon: '结算' + } + }, + { + path: 'hq-f-withoutorder', + component: () => import('@/views/ux/billManage/kanbanWithOutOrder/index'), + name: 'SettleAccount',//命名路由 + meta: { + title: '大众无条码看板出库单', + roles: ['SettleAccount.SettleAccounts'],//控制页面角色(可以设置多个角色) + icon: '结算' + } + }, + { + path: 'hq-car-outorder', + component: () => import('@/views/ux/billManage/sparepartOutOrder/index'), + name: 'Invoices',//命名路由 + meta: { + title: '大众备件出库单', + roles: ['SettleAccount.Invoices'], + icon: '对比' + } + }, + + ] +} + +export default hqOutOrderDataRouter +