From 5ecb7958c96d3f0b6d47b79aff7eb306c2cf690f Mon Sep 17 00:00:00 2001 From: charles <981744753@qq.com> Date: 星期二, 06 八月 2024 11:16:58 +0800 Subject: [PATCH] gitlab上面的wms转移到公司git --- src/router/product/index.js | 85 +++++++++++++++++++++++++++++++++++++++--- 1 files changed, 78 insertions(+), 7 deletions(-) diff --git a/src/router/product/index.js b/src/router/product/index.js index b132e6c..6e632f0 100644 --- a/src/router/product/index.js +++ b/src/router/product/index.js @@ -1,23 +1,94 @@ // const type from '@/router/deployCode' const product = (resolve) => require(["@/views/productManage/product/index"], resolve) // 浜у搧 -const inOutboundDetail = (resolve) => require(["@/views/reportForm/inboundOutboundDetail/index"], resolve) // 鍑哄叆搴撴槑缁� - +const inboundOutboundDetail = (resolve) => require(["@/views/reportForm/inboundOutboundDetail/index"], resolve) // 鍏ュ簱鏄庣粏鎶ヨ〃 +const outboundDetail = (resolve) => require(["@/views/reportForm/outboundDetail/index"], resolve) // 鍏ュ簱鏄庣粏鎶ヨ〃 +const monthboundDetail = (resolve) => require(["@/views/reportForm/monthboundDetail/index"], resolve) // 鏈堝害鏄庣粏鎶ヨ〃 +const productCategory = (resolve) => require(["@/views/productManage/productCategory/index"], resolve) // 浜у搧绫诲埆 +const productList = (resolve) => require(["@/views/productManage/productCategory/ProductList"], resolve) // 浜у搧绫诲埆-浜у搧 +const overviewList = (resolve) => require(["@/views/overview/OverviewListView"], resolve) // 姒傝堪-浜у搧鍒楄〃 +const previewExcel = (resolve) => require(["@/views/overview/previewExcel"], resolve) // 姒傝堪-浜у搧鍒楄〃 +const reorderRules = (resolve) => require(["@/views/productManage/reorderRules/index"], resolve) // 閲嶈璐ц鍒� +const attributeManage = (resolve) => require(["@/views/productManage/attributeManage/index"], resolve) // 浜у搧鑿滃崟 const appconfig = [ { path: "/productManage/product", name: "product", component: product, meta: { - title: "浜у搧绠$悊" + title: "浜у搧" } }, { - path: "/reportForm/inOutboundDetail", - name: "inOutboundDetail", - component: inOutboundDetail, + path: "/productManage/productCategory", + name: "productCategory", + component: productCategory, meta: { - title: "鍑哄叆搴撴槑缁�" + title: "浜у搧绫诲埆" + } + }, + { + path: "/reportForm/inboundOutboundDetail", + name: "inboundOutboundDetail", + component: inboundOutboundDetail, + meta: { + title: "鍏ュ簱鏄庣粏鎶ヨ〃" + } + }, + { + path: "/reportForm/outboundDetail", + name: "outboundDetail", + component: outboundDetail, + meta: { + title: "鍑哄簱鏄庣粏鎶ヨ〃" + } + }, + { + path: "/reportForm/monthboundDetail", + name: "monthboundDetail", + component: monthboundDetail, + meta: { + title: "鏈堝害缁熻鎶ヨ〃" + } + }, + { + path: "/productManage/productList", + name: "productList", + component: productList, + meta: { + title: "浜у搧" + } + }, + { + path: "/overview/overviewList", + name: "overviewList", + component: overviewList, + meta: { + title: "閲囪喘鍏ュ簱" + } + }, + { + path: "/overview/previewExcel", + name: "previewExcel", + component: previewExcel, + meta: { + title: "棰勮Excel" + } + }, + { + path: "/productManage/reorderRules", + name: "reorderRules", + component: reorderRules, + meta: { + title: "閲嶈璐ц鍒�" + } + }, + { + path: "/productManage/attributeManage", + name: "attributeManage", + component: attributeManage, + meta: { + title: "浜у搧鑿滃崟" } } ] -- Gitblit v1.8.0