charles
2024-08-06 5ecb7958c96d3f0b6d47b79aff7eb306c2cf690f
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
44
45
46
47
48
49
50
51
// const type from '@/router/deployCode'
 
const inventoryReport = (resolve) => require(["@/views/reportForm/inventoryReport/index"], resolve) // 库存报表
const locationReport = (resolve) => require(["@/views/reportForm/locationReport/index"], resolve) // 位置报表
const inboundOutboundDetail = (resolve) => require(["@/views/reportForm/inboundOutboundDetail/index"], resolve) // 历史记录
const monthboundDetail= (resolve) => require(["@/views/reportForm/monthboundDetail/index"], resolve) // 月度明细报表
const warehouseMothDetailReport =(resolve)=>require(["@/views/reportForm/warehouseMonthlyDetailReport/index"],resolve)
const appconfig = [
  {
    path: "/reportForm/inventoryReport",
    name: "inventoryReport",
    component: inventoryReport,
    meta: {
      title: "库存报表"
    }
  },
  {
    path: "/reportForm/locationReport",
    name: "locationReport",
    component: locationReport,
    meta: {
      title: "位置报表"
    }
  },
  {
    path: "/reportForm/inboundOutboundDetail",
    name: "inboundOutboundDetail",
    component: inboundOutboundDetail,
    meta: {
      title: "入库明细报表"
    }
  },
  {
    path: "/reportForm/monthboundDetail",
    name: "monthboundDetail",
    component: monthboundDetail,
    meta: {
      title: "月度统计报表"
    }
  },
    {
        path: "/reportForm/warehouseMonthlyDetailReport",
        name: "warehouseMonthlyDetailReport",
        component: warehouseMothDetailReport,
        meta: {
            title: "仓库月度明细报表"
        }
    }
]
 
export default appconfig