123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487 |
- import {
- UserLayout,
- BasicLayout,
- BlankLayout,
- BigScreen,
- PageView
- } from '@/layouts'
- export default {
- path: '/salesReport',
- redirect: '/reportData/salesOrderTotal',
- component: PageView,
- meta: {
- title: '销售报表',
- icon: 'project',
- permission: 'M_salesReport'
- },
- children: [
- {
- path: '/reportData/salesOrderTotal',
- redirect: '/reportData/salesOrderTotal/list',
- name: 'salesOrderTotal',
- component: BlankLayout,
- meta: {
- title: '销售(开单统计)',
- icon: 'profile',
- permission: 'M_salesOrderTotalList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'salesOrderTotalList',
- component: () => import(/* webpackChunkName: "reportData" */ '@/views/reportData/salesOrderTotal/list.vue'),
- meta: {
- title: '销售(开单统计)列表',
- icon: 'profile',
- hidden: true,
- permission: 'M_salesOrderTotalList'
- }
- }
- ]
- },
- {
- path: '/reportData/salesDetails',
- redirect: '/reportData/salesDetails/list',
- name: 'salesDetails',
- component: BlankLayout,
- meta: {
- title: '销售明细(下推统计)',
- icon: 'profile',
- permission: 'M_salesDetailsList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'salesDetailsList',
- component: () => import(/* webpackChunkName: "reportData" */ '@/views/reportData/salesDetails/list.vue'),
- meta: {
- title: '销售明细(下推统计)列表',
- icon: 'profile',
- hidden: true,
- permission: 'M_salesDetailsList'
- }
- }
- ]
- },
- {
- path: '/reportData/regionTypeBusinessReport',
- redirect: '/reportData/regionTypeBusinessReport/list',
- name: 'regionTypeBusinessReport',
- component: BlankLayout,
- meta: {
- title: '各品类经营分析表',
- icon: 'profile',
- permission: 'M_regionTypeBusinessReportList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'regionTypeBusinessReportList',
- component: () => import(/* webpackChunkName: "reportData" */ '@/views/reportData/regionTypeBusinessReport/list.vue'),
- meta: {
- title: '各品类经营分析表',
- icon: 'profile',
- hidden: true,
- permission: 'M_regionTypeBusinessReportList'
- }
- }
- ]
- },
- {
- path: '/reportData/dailyReport',
- redirect: '/reportData/dailyReport/list',
- name: 'dailyReport',
- component: BlankLayout,
- meta: {
- title: '每日报表',
- icon: 'profile',
- permission: 'M_dailyReport'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'dailyReportList',
- component: () => import(/* webpackChunkName: "reportData" */ '@/views/reportData/dailyReport/index.vue'),
- meta: {
- title: '每日报表',
- icon: 'profile',
- hidden: true,
- permission: 'M_dailyReport'
- }
- }
- ]
- },
- {
- path: '/reportData/actualSalesReport',
- redirect: '/reportData/actualSalesReport/list',
- name: 'actualSalesReport',
- component: BlankLayout,
- meta: {
- title: '实售销售报表',
- icon: 'profile',
- permission: 'M_actualSalesReportList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'actualSalesReportList',
- component: () => import(/* webpackChunkName: "reportData" */ '@/views/reportData/actualSalesReport/list.vue'),
- meta: {
- title: '实售销售列表',
- icon: 'profile',
- hidden: true,
- permission: 'M_actualSalesReportList'
- }
- }
- ]
- },
- {
- path: '/reportData/salesAmountReport',
- redirect: '/reportData/salesAmountReport/list',
- name: 'salesAmountReport',
- component: BlankLayout,
- meta: {
- title: '开单销售报表',
- icon: 'profile',
- permission: 'M_salesAmountReportList'
- },
- hideChildrenInMenu: true,
- children: [{
- path: 'list',
- name: 'salesAmountReportList',
- component: () => import(/* webpackChunkName: "reportData" */ '@/views/reportData/salesAmountReport/list.vue'),
- meta: {
- title: '开单销售报表列表',
- icon: 'profile',
- hidden: true,
- permission: 'M_salesAmountReportList'
- }
- }]
- },
- {
- path: '/reportData/salesSlipReport',
- redirect: '/reportData/salesSlipReport/list',
- name: 'salesSlipReport',
- component: BlankLayout,
- meta: {
- title: '开单销售单报表',
- icon: 'profile',
- permission: 'M_salesSlipReportList'
- },
- hideChildrenInMenu: true,
- children: [{
- path: 'list',
- name: 'salesSlipReportList',
- component: () => import(/* webpackChunkName: "reportData" */ '@/views/reportData/salesSlipReport/list.vue'),
- meta: {
- title: '开单销售单报表列表',
- icon: 'profile',
- hidden: true,
- permission: 'M_salesSlipReportList'
- }
- }]
- },
- {
- path: '/reportData/promotionSalesRealTimeReport',
- redirect: '/reportData/promotionSalesRealTimeReport/index',
- name: 'promotionSalesRealTimeReport',
- component: BlankLayout,
- meta: {
- title: '促销销售单报表',
- icon: 'profile',
- permission: 'M_promotionSalesRealTimeReportList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'index',
- name: 'promotionSalesRealTimeReportIndex',
- component: () => import(/* webpackChunkName: "reportData" */ '@/views/reportData/promotionSalesRealTimeReport/index.vue'),
- meta: {
- title: '促销销售单报表',
- icon: 'profile',
- hidden: true,
- permission: 'M_promotionSalesRealTimeReportList'
- }
- }
- ]
- },
- {
- path: '/reportData/promotionSalesOrderReport',
- redirect: '/reportData/promotionSalesOrderReport/list',
- name: 'promotionSalesOrderReport',
- component: BlankLayout,
- meta: {
- title: '促销销售单报表(统计)',
- icon: 'profile',
- permission: 'M_promotionSalesOrderReport'
- },
- hideChildrenInMenu: true,
- children: [{
- path: 'list',
- name: 'promotionSalesOrderReportList',
- component: () => import(/* webpackChunkName: "reportData" */ '@/views/reportData/promotionSalesOrderReport/list.vue'),
- meta: {
- title: '促销销售单报表(统计)',
- icon: 'profile',
- hidden: true,
- permission: 'M_promotionSalesOrderReportList'
- }
- }]
- },
- {
- path: '/reportData/promotionFeeReport',
- redirect: '/reportData/promotionFeeReport/index',
- name: 'promotionFeeReport',
- component: BlankLayout,
- meta: {
- title: '促销费用报表',
- icon: 'profile',
- permission: 'M_promotionFeeReportList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'index',
- name: 'promotionFeeReportIndex',
- component: () => import(/* webpackChunkName: "reportData" */ '@/views/reportData/promotionFeeReport/index.vue'),
- meta: {
- title: '促销费用报表',
- icon: 'profile',
- hidden: true,
- permission: 'M_promotionFeeReportList'
- }
- }
- ]
- },
- {
- path: '/reportData/salesReturnsReport',
- redirect: '/reportData/salesReturnsReport/list',
- name: 'salesReturnsReport',
- component: BlankLayout,
- meta: {
- title: '销售退货单报表',
- icon: 'profile',
- permission: 'M_salesReturnsReportList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'salesReturnsReportList',
- component: () => import(/* webpackChunkName: "reportData" */ '@/views/reportData/salesReturnsReport/list.vue'),
- meta: {
- title: '销售退货单报表列表',
- icon: 'profile',
- hidden: true,
- permission: 'M_salesReturnsReportList'
- }
- }
- ]
- },
- {
- path: '/reportData/salesReturnDetailReport',
- redirect: '/reportData/salesReturnDetailReport/list',
- name: 'salesReturnDetailReport',
- component: BlankLayout,
- meta: {
- title: '销售退货明细报表',
- icon: 'profile',
- permission: 'M_salesReturnDetailReportList'
- },
- hideChildrenInMenu: true,
- children: [{
- path: 'list',
- name: 'salesReturnDetailReportList',
- component: () => import(/* webpackChunkName: "reportData" */
- '@/views/reportData/salesReturnDetailReport/list.vue'),
- meta: {
- title: '销售退货明细报表列表',
- icon: 'profile',
- hidden: true,
- permission: 'M_salesReturnDetailReportList'
- }
- }]
- },
- {
- path: '/reportData/salesReturnReport',
- redirect: '/reportData/salesReturnReport/list',
- name: 'salesReturnReport',
- component: BlankLayout,
- meta: {
- title: '实售退货报表',
- icon: 'profile',
- permission: 'M_salesReturnReportList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'salesReturnReportList',
- component: () => import(/* webpackChunkName: "reportData" */ '@/views/reportData/salesReturnReport/list.vue'),
- meta: {
- title: '实售退货列表',
- icon: 'profile',
- hidden: true,
- permission: 'M_salesReturnReportList'
- }
- }
- ]
- },
- {
- path: '/reportData/billingReturnReport',
- redirect: '/reportData/billingReturnReport/list',
- name: 'billingReturnReport',
- component: BlankLayout,
- meta: {
- title: '开单退货报表',
- icon: 'profile',
- permission: 'M_billingReturnReportList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'billingReturnReportList',
- component: () => import(/* webpackChunkName: "reportData" */ '@/views/reportData/billingReturnReport/list.vue'),
- meta: {
- title: '开单退货列表',
- icon: 'profile',
- hidden: true,
- permission: 'M_billingReturnReportList'
- }
- }
- ]
- },
- {
- path: '/reportData/returnSlipReport',
- redirect: '/reportData/returnSlipReport/list',
- name: 'returnSlipReport',
- component: BlankLayout,
- meta: {
- title: '开单退货单报表',
- icon: 'profile',
- permission: 'M_returnSlipReportList'
- },
- hideChildrenInMenu: true,
- children: [{
- path: 'list',
- name: 'returnSlipReportList',
- component: () => import(/* webpackChunkName: "reportData" */
- '@/views/reportData/returnSlipReport/list.vue'),
- meta: {
- title: '开单退货单报表列表',
- icon: 'profile',
- hidden: true,
- permission: 'M_returnSlipReportList'
- }
- }]
- },
- {
- path: '/reportData/regionTypeSalesReport',
- redirect: '/reportData/regionTypeSalesReport/list',
- name: 'regionTypeSalesReport',
- component: BlankLayout,
- meta: {
- title: '各分区品类实售明细',
- icon: 'profile',
- permission: 'M_regionTypeSalesReportList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'regionTypeSalesReportList',
- component: () => import(/* webpackChunkName: "reportData" */ '@/views/reportData/regionTypeSalesReport/list.vue'),
- meta: {
- title: '各分区品类实售明细',
- icon: 'profile',
- hidden: true,
- permission: 'M_regionTypeSalesReportList'
- }
- }
- ]
- },
- {
- path: '/reportData/salesPresentation',
- redirect: '/reportData/salesPresentation/list',
- name: 'salesPresentation',
- component: BlankLayout,
- meta: {
- title: '销售交单报表',
- icon: 'profile',
- permission: 'M_salesPresentationList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'salesPresentationList',
- component: () => import(/* webpackChunkName: "reportData" */ '@/views/reportData/salesPresentation/list.vue'),
- meta: {
- title: '销售交单报表列表',
- icon: 'profile',
- hidden: true,
- permission: 'M_salesPresentationList'
- }
- }
- ]
- },
- {
- path: '/reportData/billingStatistics',
- redirect: '/reportData/billingStatistics/index',
- name: 'billingStatistics',
- component: BlankLayout,
- meta: {
- title: '开单统计报表',
- icon: 'profile',
- permission: 'M_billingStatisticsList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'index',
- name: 'billingStatisticsIndex',
- component: () => import(/* webpackChunkName: "reportData" */ '@/views/reportData/billingStatistics/index.vue'),
- meta: {
- title: '开单统计报表',
- icon: 'profile',
- hidden: true,
- permission: 'M_billingStatisticsList'
- }
- }
- ]
- },
- {
- path: '/reportData/returnGoodsPresentation',
- redirect: '/reportData/returnGoodsPresentation/list',
- name: 'returnGoodsPresentation',
- component: BlankLayout,
- meta: {
- title: '退货交单报表',
- icon: 'profile',
- permission: 'M_returnGoodsPresentationList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'returnGoodsPresentationList',
- component: () => import(/* webpackChunkName: "reportData" */ '@/views/reportData/returnGoodsPresentation/list.vue'),
- meta: {
- title: '退货交单报表列表',
- icon: 'profile',
- hidden: true,
- permission: 'M_returnGoodsPresentationList'
- }
- }
- ]
- }
- ]
- }
|