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' } ] } ] }