| 12345678910111213141516171819202122232425262728293031 |
- var routers = [
- {
- path: '/report/yearTransactionRanking',
- name: 'ReportYearTransactionRanking',
- component: () => import('@/views/report/yearTransactionRanking.vue'),
- meta: {
- roles: ["admin"],
- title: '年度交易额排行'
- }
- },
- {
- path: '/report/monthTransactionRanking',
- name: 'ReportMonthTransactionRanking',
- component: () => import('@/views/report/monthTransactionRanking.vue'),
- meta: {
- roles: ["admin"],
- title: '月度交易额排行'
- }
- },
- {
- path: '/report/monthTransactionList',
- name: 'ReportMonthTransactionList',
- component: () => import('@/views/report/monthTransactionList.vue'),
- meta: {
- roles: ["admin"],
- title: '月度交易额报表'
- }
- },
- ]
- export default routers;
|