| | |
| | | // 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 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 = [ |
| | | { |
| | |
| | | name: "product", |
| | | component: product, |
| | | meta: { |
| | | title: "产品管理" |
| | | title: "产品" |
| | | } |
| | | }, |
| | | { |
| | | path: "/reportForm/inOutboundDetail", |
| | | name: "inOutboundDetail", |
| | | component: inOutboundDetail, |
| | | 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: "重订货规则" |
| | | } |
| | | } |
| | | ] |
| | | |