yangfeng
2023-09-26 7ffe5a313fb55e101ab4f77167847ff456eeb6db
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
// const type from '@/router/deployCode'
 
const allot = (resolve) => require(["@/views/operate/allot/index"], resolve) // 调拨
const scrap = (resolve) => require(["@/views/operate/scrap/index"], resolve) // 报废
const inventoryAdjustment = (resolve) => require(["@/views/operate/inventoryAdjustment/index"], resolve) // 库存调整
 
const appconfig = [
  {
    path: "/operate/allot",
    name: "allot",
    component: allot,
    meta: {
      title: "调拨"
    }
  },
  {
    path: "/operate/scrap",
    name: "scrap",
    component: scrap,
    meta: {
      title: "报废单"
    }
  },
  {
    path: "/operate/inventoryAdjustment",
    name: "inventoryAdjustment",
    component: inventoryAdjustment,
    meta: {
      title: "库存调整"
    }
  }
]
 
export default appconfig