yangfeng
2023-09-15 d1fad869b261b62ab6037e5c0f641ff63d50f24b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
// const type from '@/router/deployCode'
 
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/product",
    name: "product",
    component: product,
    meta: {
      title: "产品管理"
    }
  },
  {
    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: "产品"
    }
  }
]
 
export default appconfig