From 54df47d5b8c4de6d5dbddd05f96bd6add9be78a6 Mon Sep 17 00:00:00 2001 From: haoxuan <haoxuan> Date: 星期二, 14 十一月 2023 15:03:27 +0800 Subject: [PATCH] 产品模块 增加 在库数量,预测数量,进,出数量,重订货规则1个的时候显示 最小最大,否则显示规则数量 --- src/router/product/index.js | 47 ++++++++++++++++++++++++++++++++++++++++++++++- 1 files changed, 46 insertions(+), 1 deletions(-) diff --git a/src/router/product/index.js b/src/router/product/index.js index e05f5ad..6fbf969 100644 --- a/src/router/product/index.js +++ b/src/router/product/index.js @@ -1,6 +1,11 @@ // const type from '@/router/deployCode' const product = (resolve) => require(["@/views/productManage/product/index"], resolve) // 浜у搧 +const inboundOutboundDetail = (resolve) => require(["@/views/reportForm/inboundOutboundDetail/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 reorderRules = (resolve) => require(["@/views/productManage/reorderRules/index"], resolve) // 閲嶈璐ц鍒� const appconfig = [ { @@ -8,7 +13,47 @@ name: "product", component: product, meta: { - title: "浜у搧绠$悊" + title: "浜у搧" + } + }, + { + path: "/productManage/productCategory", + name: "productCategory", + component: productCategory, + meta: { + title: "浜у搧绫诲埆" + } + }, + { + path: "/reportForm/inboundOutboundDetail", + name: "inboundOutboundDetail", + component: inboundOutboundDetail, + meta: { + title: "鍑哄叆搴撴槑缁�" + } + }, + { + path: "/productManage/productList", + name: "productList", + component: productList, + meta: { + title: "浜у搧" + } + }, + { + path: "/overview/overviewList", + name: "overviewList", + component: overviewList, + meta: { + title: "閲囪喘鍏ュ簱" + } + }, + { + path: "/productManage/reorderRules", + name: "reorderRules", + component: reorderRules, + meta: { + title: "閲嶈璐ц鍒�" } } ] -- Gitblit v1.8.0