import { ExportModuleData } from '@/types/module' const data: ExportModuleData = { async: () => import('./router/index').then(module => module.default), sync: { menu: [ { menuPath: '/finance', menuName: 'finance.index', menuIcon: 'WalletFilled', children: [ { menuPath: '/finance/test', menuName: 'finance.time-deposit' }, { menuPath: '/finance/call-deposit', menuName: 'finance.call-deposit' }, { menuPath: '/finance/product', menuName: 'finance.product' }, { menuPath: '/finance/large-deposit', menuName: 'finance.large-deposit' }, { menuPath: '/finance/structured-deposit', menuName: 'finance.structured-deposit' }, { menuPath: '/finance/smart-time-deposit', menuName: 'finance.smart-time-deposit' }, { menuPath: '/finance/smart-call-deposit', menuName: 'finance.smart-call-deposit' } ] } ], menuOrder: 5000, i18n: { 'zh-CN': { finance: { index: '理财产品', 'time-deposit': '定期存款', 'call-deposit': '通知存款', product: '理财产品', 'large-deposit': '大额存单', 'structured-deposit': '结构性存款', 'smart-time-deposit': '智能定期存款', 'smart-call-deposit': '智能通知存款' } }, 'zh-TW': { finance: { index: '理財產品', 'time-deposit': '定期存款', 'call-deposit': '通知存款', product: '理財產品', 'large-deposit': '大額存單', 'structured-deposit': '結構性存款', 'smart-time-deposit': '智能定期存款', 'smart-call-deposit': '智能通知存款' } } } } } export default data