123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214 |
- import { UserLayout, BasicLayout, BlankLayout, BigScreen, PageView } from '@/layouts'
- export default {
- path: '/otherReport',
- redirect: '/reportData/salesOrderTotal',
- component: PageView,
- meta: {
- title: '其它报表',
- icon: 'project',
- permission: 'M_otherReport'
- },
- children: [
- {
- path: '/reportData/tireSalesReport',
- redirect: '/reportData/tireSalesReport/index',
- name: 'tireSalesReport',
- component: BlankLayout,
- meta: {
- title: '轮胎统计报表',
- icon: 'profile',
- permission: 'M_tireSalesReportList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'index',
- name: 'tireSalesReportIndex',
- component: () => import(/* webpackChunkName: "reportData" */ '@/views/reportData/tireSalesReport/index.vue'),
- meta: {
- title: '轮胎统计报表',
- icon: 'profile',
- hidden: true,
- permission: 'M_tireSalesReportList'
- }
- }
- ]
- },
- // {
- // path: '/reportData/tireFeeReport',
- // redirect: '/reportData/tireFeeReport/index',
- // name: 'tireFeeReport',
- // component: BlankLayout,
- // meta: {
- // title: '轮胎费用报表',
- // icon: 'profile',
- // permission: 'M_tireFeeReportList'
- // },
- // hideChildrenInMenu: true,
- // children: [
- // {
- // path: 'index',
- // name: 'tireFeeReportIndex',
- // component: () => import(/* webpackChunkName: "reportData" */ '@/views/reportData/tireFeeReport/index.vue'),
- // meta: {
- // title: '轮胎费用报表',
- // icon: 'profile',
- // hidden: true,
- // permission: 'M_tireFeeReportList'
- // }
- // }
- // ]
- // },
- {
- path: '/reportData/tireSubsidyReport',
- redirect: '/reportData/tireSubsidyReport/index',
- name: 'tireSubsidyReport',
- component: BlankLayout,
- meta: {
- title: '轮胎补贴报表',
- icon: 'profile',
- permission: 'M_tireSubsidyList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'index',
- name: 'tireSubsidyReportIndex',
- component: () => import(/* webpackChunkName: "reportData" */ '@/views/reportData/tireSubsidyReport/index.vue'),
- meta: {
- title: '轮胎补贴报表',
- icon: 'profile',
- hidden: true,
- permission: 'M_tireSubsidyList'
- }
- }
- ]
- },
- {
- path: '/reportData/expenseAccountBearerReport',
- redirect: '/reportData/expenseAccountBearerReport/list',
- name: 'expenseAccountBearerReport',
- component: BlankLayout,
- meta: {
- title: '费用汇总报表(按承担方)',
- icon: 'profile',
- permission: 'M_expenseAccountBearerReportList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'expenseAccountBearerReportList',
- component: () => import(/* webpackChunkName: "reportData" */ '@/views/reportData/expenseAccountReport/bearerList.vue'),
- meta: {
- title: '费用汇总报表(按承担方)',
- icon: 'profile',
- hidden: true,
- permission: 'M_expenseAccountBearerReportList'
- }
- }
- ]
- },
- {
- path: '/reportData/expenseAccountCategoryReport',
- redirect: '/reportData/expenseAccountCategoryReport/list',
- name: 'expenseAccountCategoryReport',
- component: BlankLayout,
- meta: {
- title: '费用汇总报表(按品类)',
- icon: 'profile',
- permission: 'M_expenseAccountCategoryReportList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'expenseAccountCategoryReportList',
- component: () => import(/* webpackChunkName: "reportData" */ '@/views/reportData/expenseAccountReport/categoryList.vue'),
- meta: {
- title: '费用汇总报表(按品类)',
- icon: 'profile',
- hidden: true,
- permission: 'M_expenseAccountCategoryReportList'
- }
- }
- ]
- },
- {
- path: '/reportData/receivedSendStorageReport',
- redirect: '/reportData/receivedSendStorageReport/index',
- name: 'receivedSendStorageReport',
- component: BlankLayout,
- meta: {
- title: '收发存报表',
- icon: 'profile',
- permission: 'M_receivedSendStorageReport'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'index',
- name: 'receivedSendStorageReportIndex',
- component: () => import(/* webpackChunkName: "reportData" */ '@/views/reportData/receivedSendStorageReport/index.vue'),
- meta: {
- title: '收发存报表',
- icon: 'profile',
- hidden: true,
- permission: 'M_receivedSendStorageReportList'
- }
- }
- ]
- },
- {
- path: '/dataExport/exportSales',
- redirect: '/dataExport/exportSales/list',
- name: 'exportSales',
- component: BlankLayout,
- meta: {
- title: '导出销售',
- icon: 'gold',
- permission: 'M_exportSales'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'exportSalesList',
- component: () => import(/* webpackChunkName: "dataExport" */ '@/views/dataExport/exportSales/list.vue'),
- meta: {
- title: '导出销售',
- icon: 'gold',
- hidden: true,
- permission: 'M_exportSales'
- }
- }
- ]
- },
- {
- path: '/dataExport/exportCheck',
- redirect: '/dataExport/exportCheck/list',
- name: 'exportCheck',
- component: BlankLayout,
- meta: {
- title: '导出盘点',
- icon: 'gold',
- permission: 'M_exportCheck'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'exportCheckList',
- component: () => import(/* webpackChunkName: "dataExport" */ '@/views/dataExport/exportCheck/list.vue'),
- meta: {
- title: '导出盘点',
- icon: 'gold',
- hidden: true,
- permission: 'M_exportCheck'
- }
- }
- ]
- }
- ]
- }
|