import Layout from '@/layout/index'; const statisticalReportRouter = { path: '/statisticalReport', component: Layout, redirect: '/statisticalReport', name: 'statisticalReport', alwaysShow: true, // will always show the root menu meta: { title: 'statisticalReport', module: 'report', icon: '-tongjibaobiao' }, children: [ // 期货采购入库报表统计 // { // path: 'purchaseReceiptStatisticsList', // component: () => // import(/* webpackChunkName: "applDetail" */ '@/views/statisticalReport/purchaseReceiptStatisticsList'), // name: 'purchaseReceiptStatisticsList', // meta: { // title: 'purchaseReceiptStatisticsList', // shortcutEntrance: 'statisticalReport', // module: 'report.procurementInReport', // permissicon: [], // keepAlive: true, // _title:'期货采购入库报表' // // module: 'procurement.sparepart.applDetail' // } // }, //期货采购平仓报表 // { // path: 'purchaseClosingCashierList', // component: () => // import(/* webpackChunkName: "applDetail" */ '@/views/statisticalReport/purchaseClosingCashierList'), // name: 'purchaseClosingCashierList', // meta: { // title: 'purchaseClosingCashierList', // shortcutEntrance: 'statisticalReport', // module: 'report.procurementCloseReport', // permissicon: [], // keepAlive: true, // _title:'期货采购平仓报表' // // module: 'procurement.sparepart.applDetail' // } // }, // 期货销售出库报表统计 // { // path: 'salesDeliveryReportList', // component: () => // import(/* webpackChunkName: "applDetail" */ '@/views/statisticalReport/salesDeliveryReportList'), // name: 'salesDeliveryReportList', // meta: { // title: 'salesDeliveryReportList', // shortcutEntrance: 'statisticalReport', // module: 'report.saleOutReport', // permissicon: [], // keepAlive: true, // _title:'期货销售出库报表' // // module: 'procurement.sparepart.applDetail' // } // }, //期货销售平仓报表 // { // path: 'salesClosingCashierList', // component: () => // import(/* webpackChunkName: "applDetail" */ '@/views/statisticalReport/salesClosingCashierList'), // name: 'salesClosingCashierList', // meta: { // title: 'salesClosingCashierList', // shortcutEntrance: 'statisticalReport', // module: 'report.saleCloseReport', // permissicon: [], // keepAlive: true, // _title:'期货销售平仓报表' // // module: 'procurement.sparepart.applDetail' // } // }, //汽运结算报表 { path: 'autoSettlementList', component: () => import(/* webpackChunkName: "applDetail" */ '@/views/statisticalReport/autoSettlementList'), name: 'autoSettlementList', meta: { title: 'autoSettlementList', shortcutEntrance: 'statisticalReport', module: 'report.transportationReport', permissicon: [], keepAlive: true, _title:'汽运结算报表' // module: 'procurement.sparepart.applDetail' } }, //火运结算报表 { path: 'huoyunList', component: () => import( '@/views/statisticalReport/huoyunList'), name: 'huoyunList', meta: { title: 'huoyunList', shortcutEntrance: 'statisticalReport', module: 'report.transportationReport', permissicon: [], keepAlive: true, _title:'火运结算报表' // module: 'procurement.sparepart.applDetail' } }, //船运结算报表 { path: 'shippingList', component: () => import( '@/views/statisticalReport/shippingList'), name: 'shippingList', meta: { title: 'shippingList', shortcutEntrance: 'statisticalReport', module: 'report.transportationReport', permissicon: [], keepAlive: true, _title:'船运结算报表' // module: 'procurement.sparepart.applDetail' } }, // 现货采购入库报表统计 { path: 'stockPurchaseReceiptReportList', component: () => import(/* webpackChunkName: "applDetail" */ '@/views/statisticalReport/stockPurchaseReceiptReportList'), name: 'stockPurchaseReceiptReportList', meta: { title: 'stockPurchaseReceiptReportList', shortcutEntrance: 'statisticalReport', module: 'report.goodsProcurementInReport', permissicon: [], keepAlive: true, _title:'现货采购入库报表' // module: 'procurement.sparepart.applDetail' } }, // 现货销售出库报表统计 { path: 'stockSaleOutReportList', component: () => import(/* webpackChunkName: "applDetail" */ '@/views/statisticalReport/stockSaleOutReportList'), name: 'stockSaleOutReportList', meta: { title: 'stockSaleOutReportList', shortcutEntrance: 'statisticalReport', module: 'report.goodsSaleOutReport', permissicon: [], keepAlive: true, _title:'现货销售出库报表' // module: 'procurement.sparepart.applDetail' } }, ], }; export default statisticalReportRouter;