report.js 915 B

12345678910111213141516171819202122232425262728293031
  1. var routers = [
  2. {
  3. path: '/report/yearTransactionRanking',
  4. name: 'ReportYearTransactionRanking',
  5. component: () => import('@/views/report/yearTransactionRanking.vue'),
  6. meta: {
  7. roles: ["admin"],
  8. title: '年度交易额排行'
  9. }
  10. },
  11. {
  12. path: '/report/monthTransactionRanking',
  13. name: 'ReportMonthTransactionRanking',
  14. component: () => import('@/views/report/monthTransactionRanking.vue'),
  15. meta: {
  16. roles: ["admin"],
  17. title: '月度交易额排行'
  18. }
  19. },
  20. {
  21. path: '/report/monthTransactionList',
  22. name: 'ReportMonthTransactionList',
  23. component: () => import('@/views/report/monthTransactionList.vue'),
  24. meta: {
  25. roles: ["admin"],
  26. title: '月度交易额报表'
  27. }
  28. },
  29. ]
  30. export default routers;