123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 |
- import Layout from '@/views/layout/Layout'
-
- export default {
- path: '/service',
- component: Layout,
- hidden: true,
- is_menu: false,
-
- meta: {
- title: 'service',
- icon: 'shebei'
- },
- children: [{
- path: '/service',
- component: () => import('@/xt_pages/service/index'),
- hidden: true,
- is_menu: false,
- name: 'service',
- meta: {
- title: 'service',
- icon: 'shebei',
- noCache: true
- }
- }, {
- path: '/service/invoice',
- component: () => import('@/xt_pages/service/invoice'),
- hidden: true,
- is_menu: false,
- name: 'invoice',
- meta: {
- title: 'invoice',
- icon: 'shebei',
- noCache: true
- }
- }, {
- path: '/service/invoice/apply',
- component: () => import('@/xt_pages/service/invoiceApply'),
- hidden: true,
- is_menu: false,
- name: 'invoiceApply',
- meta: {
- title: 'invoiceApply',
- icon: 'shebei',
- noCache: true
- }
- },
- {
- path: '/servicePay',
- component: () => import('@/xt_pages/service/servicePay'),
- hidden: true,
- name: 'servicePay',
- meta: {
- title: 'servicePay',
- noCache: true,
-
- }
- },
- {
- path: '/payType',
- component: () => import('@/xt_pages/service/payType'),
- hidden: true,
- name: 'payType',
- meta: {
- title: 'payType',
- noCache: true,
-
- }
- },
- {
- path: '/weChatPay',
- component: () => import('@/xt_pages/service/weChatPay'),
- hidden: true,
- name: 'weChatPay',
- meta: {
- title: 'weChatPay'
- }
- },
- {
- path: '/service/completeOrder',
- component: () => import('@/xt_pages/service/completeOrder'),
- hidden: true,
- name: 'completeOrder',
- meta: {
- title: 'completeOrder'
- }
- }, {
- path: '/service/buy',
- component: () => import('@/xt_pages/service/serviceOrder'),
- hidden: true,
- is_menu: false,
- name: 'serviceOrder',
- meta: {
- title: 'serviceOrder',
- icon: 'shebei',
- noCache: true
- }
- }, {
- path: '/order',
- component: () => import('@/xt_pages/service/orderRecord'),
- hidden: true,
- is_menu: false,
- name: 'orderRecord',
- meta: {
- title: 'orderRecord',
- icon: 'shebei',
- noCache: true
- }
- }, {
- path: '/service/recordList',
- component: () => import('@/xt_pages/service/serviceRecord'),
- hidden: true,
- is_menu: false,
- name: 'recordList',
- meta: {
- title: 'recordList',
- icon: 'shebei',
- noCache: true
- }
- }
- ]
- }
|