fangcom.finance.router.config.js 712 B

1234567891011121314151617181920212223242526272829
  1. export default [
  2. {
  3. path: '/finance',
  4. name: '财务',
  5. icon: 'property-safety',
  6. authority: ['Pages.Order'],
  7. routes: [
  8. {
  9. path: '/finance/flow',
  10. name: '财务流水',
  11. component: './FangCom/Finance/Flow/List',
  12. authority: ['Pages.Room.Query']
  13. },
  14. {
  15. path: '/finance/flow/:reportDate/:reportType',
  16. name: '查看账单',
  17. component: './FangCom/Finance/Flow/Detail',
  18. authority: ['Pages.Room.Query'],
  19. hideInMenu: true
  20. },
  21. {
  22. path: '/finance/refund',
  23. name: '退款申请',
  24. component: './FangCom/Finance/Refund/List',
  25. authority: ['Pages.NewRoom.Query']
  26. }
  27. ]
  28. }
  29. ]