From d1fad869b261b62ab6037e5c0f641ff63d50f24b Mon Sep 17 00:00:00 2001
From: yangfeng <wanwan926_4@163.com>
Date: 星期五, 15 九月 2023 15:09:13 +0800
Subject: [PATCH] 产品类别列表及对应产品列表、新建页面和FromBtnsView公共组件开发

---
 src/router/product/index.js |   18 ++++++++++++++++++
 1 files changed, 18 insertions(+), 0 deletions(-)

diff --git a/src/router/product/index.js b/src/router/product/index.js
index b132e6c..a869524 100644
--- a/src/router/product/index.js
+++ b/src/router/product/index.js
@@ -2,6 +2,8 @@
 
 const product = (resolve) => require(["@/views/productManage/product/index"], resolve) // 浜у搧
 const inOutboundDetail = (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 appconfig = [
   {
@@ -13,12 +15,28 @@
     }
   },
   {
+    path: "/productManage/productCategory",
+    name: "productCategory",
+    component: productCategory,
+    meta: {
+      title: "浜у搧绫诲埆"
+    }
+  },
+  {
     path: "/reportForm/inOutboundDetail",
     name: "inOutboundDetail",
     component: inOutboundDetail,
     meta: {
       title: "鍑哄叆搴撴槑缁�"
     }
+  },
+  {
+    path: "/productManage/productList",
+    name: "productList",
+    component: productList,
+    meta: {
+      title: "浜у搧"
+    }
   }
 ]
 

--
Gitblit v1.8.0