transportation.js 523 B

123456789101112131415161718192021
  1. /** When your routing table is too long, you can split it into small modules **/
  2. import Layout from '@/layout'
  3. const transportationRouter = {
  4. path: '/transportation',
  5. component: Layout,
  6. redirect: '/transportation/transportation',
  7. hidden: true,
  8. children: [
  9. {
  10. path: 'transportation',
  11. component: () => import('@/views/config/transportation-config'),
  12. name: 'transportation',
  13. meta: { title: '运费配置', icon: 'user', noCache: true }
  14. },
  15. ]
  16. }
  17. export default transportationRouter