123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166 |
- import {
- UserLayout,
- BasicLayout,
- BlankLayout,
- BigScreen,
- PageView
- } from '@/layouts'
- export default {
- path: '/purchasingReport',
- redirect: '/reportData/salesOrderTotal',
- component: PageView,
- meta: {
- title: '采购报表',
- icon: 'project',
- permission: 'M_purchasingReport'
- },
- children: [
- {
- path: '/reportData/urchaseReturn',
- redirect: '/reportData/urchaseReturn/list',
- name: 'urchaseReturn',
- component: BlankLayout,
- meta: {
- title: '采购退货单报表',
- icon: 'profile',
- permission: 'M_urchaseReturn'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'urchaseReturnList',
- component: () => import(/* webpackChunkName: "reportData" */ '@/views/reportData/urchaseReturn/list.vue'),
- meta: {
- title: '采购退货单报表列表',
- icon: 'profile',
- hidden: true,
- permission: 'M_urchaseReturnList'
- }
- }
- ]
- },
- {
- path: '/reportData/urchaseDetailReturn',
- redirect: '/reportData/urchaseDetailReturn/detailList',
- name: 'urchaseDetailReturn',
- component: BlankLayout,
- meta: {
- title: '采购退货单明细报表',
- icon: 'profile',
- permission: 'M_urchaseDetailReturn'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'detailList',
- name: 'urchaseDetailReturnList',
- component: () => import(/* webpackChunkName: "reportData" */ '@/views/reportData/urchaseDetailReturn/detailList.vue'),
- meta: {
- title: '采购退货单明细报表列表',
- icon: 'profile',
- hidden: true,
- permission: 'M_urchaseDetailReturnList'
- }
- }
- ]
- },
- {
- path: '/reportData/billingBackReport',
- redirect: '/reportData/billingBackReport/list',
- name: 'billingBackReport',
- component: BlankLayout,
- meta: {
- title: '开单采退报表',
- icon: 'profile',
- permission: 'M_billingBackReport'
- },
- hideChildrenInMenu: true,
- children: [{
- path: 'list',
- name: 'billingBackReportList',
- component: () => import(/* webpackChunkName: "reportData" */ '@/views/reportData/billingBackReport/list.vue'),
- meta: {
- title: '开单采退报表列表',
- icon: 'profile',
- hidden: true,
- permission: 'M_billingBackReportList'
- }
- }]
- },
- {
- path: '/reportData/billingOrderReport',
- redirect: '/reportData/billingOrderReport/list',
- name: 'billingOrderReport',
- component: BlankLayout,
- meta: {
- title: '开单采退单报表',
- icon: 'profile',
- permission: 'M_billingOrderReport'
- },
- hideChildrenInMenu: true,
- children: [{
- path: 'list',
- name: 'billingOrderReportList',
- component: () => import(/* webpackChunkName: "reportData" */ '@/views/reportData/billingOrderReport/list.vue'),
- meta: {
- title: '开单采退单报表列表',
- icon: 'profile',
- hidden: true,
- permission: 'M_billingOrderReportList'
- }
- }]
- },
- {
- path: '/reportData/warehousingOrder',
- redirect: '/reportData/warehousingOrder/list',
- name: 'warehousingOrder',
- component: BlankLayout,
- meta: {
- title: '入库单报表',
- icon: 'profile',
- permission: 'M_warehousingOrderList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'warehousingOrderList',
- component: () => import(/* webpackChunkName: "reportData" */ '@/views/reportData/warehousingOrder/list.vue'),
- meta: {
- title: '入库单报表列表',
- icon: 'profile',
- hidden: true,
- permission: 'M_warehousingOrderList'
- }
- }
- ]
- },
- {
- path: '/reportData/warehousingOrderDetail',
- redirect: '/reportData/warehousingOrderDetail/list',
- name: 'warehousingOrderDetail',
- component: BlankLayout,
- meta: {
- title: '入库单明细报表',
- icon: 'profile',
- permission: 'M_warehousingOrderDetailList'
- },
- hideChildrenInMenu: true,
- children: [
- {
- path: 'list',
- name: 'warehousingOrderDetailList',
- component: () => import(/* webpackChunkName: "reportData" */ '@/views/reportData/warehousingOrderDetail/list.vue'),
- meta: {
- title: '入库单明细报表列表',
- icon: 'profile',
- hidden: true,
- permission: 'M_warehousingOrderDetailList'
- }
- }
- ]
- },
- ]
- }
|