You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
489 B

  1. /* Layout */
  2. import Layout from '../views/layout/Layout'
  3. const _import = require('./_import_' + process.env.NODE_ENV)
  4. export default {
  5. routes: [
  6. {
  7. path: '/my/order',
  8. component: Layout,
  9. name: '订单',
  10. meta: {
  11. title: '订单',
  12. icon: 'task'
  13. },
  14. children: [
  15. {
  16. path: 'index',
  17. component: _import('order/index'),
  18. name: '我的',
  19. meta: {
  20. title: '我的',
  21. icon: 'component'
  22. }
  23. }
  24. ]
  25. },
  26. ]
  27. }