| | |
| | | |
| | | 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 = [ |
| | | { |
| | |
| | | } |
| | | }, |
| | | { |
| | | 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: "产品" |
| | | } |
| | | } |
| | | ] |
| | | |