| 123456789101112131415161718192021222324252627282930313233343536373839 |
- export default {
- routes: {
- path: '/wechatpay',
- name: 'WechatpayModule',
- component: () => import('@/layout/index.vue'),
- meta: {
- title: '微信支付管理',
- icon: 'ChatDotRound',
- permission: 'wechatpay'
- },
- children: [
- {
- path: 'transfer',
- name: 'WechatpayTransfer',
- component: () => import('./views/TransferList.vue'),
- meta: {
- title: '转账记录',
- icon: 'List'
- }
- }
- ]
- },
- menus: [
- {
- path: '/wechatpay',
- title: '微信支付管理',
- icon: 'ChatDotRound',
- permission: 'wechatpay',
- children: [
- {
- path: '/wechatpay/transfer',
- title: '转账记录',
- icon: 'List'
- }
- ]
- }
- ]
- }
|