fangcom.report.router.config.js 368 B

12345678910111213141516
  1. export default [
  2. {
  3. path: '/report',
  4. name: '报表中心',
  5. icon: 'property-safety',
  6. authority: ['Pages.ReportTransactionData'],
  7. routes: [
  8. {
  9. path: '/report/transaction',
  10. name: '月报表',
  11. component: './FangCom/Reportcenter/TransactionData/List',
  12. authority: ['Pages.ReportTransactionData']
  13. }
  14. ]
  15. }
  16. ]