// const type from '@/router/deployCode' const inventoryReport = (resolve) => require(["@/views/reportForm/inventoryReport/index"], resolve) // 库存报表 const locationReport = (resolve) => require(["@/views/reportForm/locationReport/index"], resolve) // 位置报表 const appconfig = [ { path: "/reportForm/inventoryReport", name: "inventoryReport", component: inventoryReport, meta: { title: "库存报表" } }, { path: "/reportForm/locationReport", name: "locationReport", component: locationReport, meta: { title: "位置报表" } } ] export default appconfig