| | |
| | | hidden: false, |
| | | name: 'H5TaskCreate', |
| | | meta: { title: '创建任务' } |
| | | }, |
| | | { |
| | | path: '/system/invoice/detail', |
| | | component: () => import('@/views/system/invoice/detail'), |
| | | name: 'InvoiceDetail', |
| | | hidden: true, |
| | | meta: { title: '发票详情', activeMenu: '/system/invoice' } |
| | | }, |
| | | { |
| | | path: '/system/invoice/audit', |
| | | component: () => import('@/views/system/invoice/audit'), |
| | | name: 'InvoiceAudit', |
| | | hidden: true, |
| | | meta: { title: '审核发票', activeMenu: '/system/invoice' } |
| | | }, |
| | | { |
| | | path: '/system/invoice/apply', |
| | | component: () => import('@/views/system/invoice/apply'), |
| | | name: 'InvoiceApply', |
| | | hidden: true, |
| | | meta: { title: '申请发票', activeMenu: '/system/invoice' } |
| | | } |
| | | ] |
| | | |
| | |
| | | ] |
| | | }, |
| | | |
| | | // 支付管理路由 |
| | | { |
| | | path: "/payment", |
| | | component: Layout, |
| | | redirect: "/payment/order", |
| | | name: "Payment", |
| | | meta: { |
| | | title: "支付管理", |
| | | icon: "money" |
| | | }, |
| | | children: [ |
| | | { |
| | | path: "order", |
| | | component: () => import("@/views/payment/order/index"), |
| | | name: "PayOrder", |
| | | meta: { |
| | | title: "支付订单查询", |
| | | icon: "el-icon-s-order" |
| | | } |
| | | } |
| | | ] |
| | | }, |
| | | |
| | | { |
| | | path: '/system/user-auth', |
| | | component: Layout, |