haoxuan
2024-04-19 75b4bf4554da6622cfe00f577829b256fc44f32c
src/router/report/index.js
@@ -3,6 +3,7 @@
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 appconfig = [
  {
@@ -26,9 +27,17 @@
    name: "inboundOutboundDetail",
    component: inboundOutboundDetail,
    meta: {
      title: "出入库明细"
      title: "入库明细报表"
    }
  }
  },
  {
    path: "/reportForm/monthboundDetail",
    name: "monthboundDetail",
    component: monthboundDetail,
    meta: {
      title: "月度统计报表"
    }
  },
]
export default appconfig