index.js 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. export default {
  2. routes: {
  3. path: '/shipping-template',
  4. name: 'ShippingTemplateModule',
  5. component: () => import('@/layout/index.vue'),
  6. meta: {
  7. title: '运费模板管理',
  8. icon: 'Van',
  9. permission: 'shipping_template'
  10. },
  11. children: [
  12. {
  13. path: 'list',
  14. name: 'ShippingTemplateList',
  15. component: () => import('./views/ShippingTemplateList.vue'),
  16. meta: {
  17. title: '运费模板列表',
  18. icon: 'List'
  19. }
  20. }
  21. ]
  22. },
  23. menus: [
  24. {
  25. path: '/shipping-template',
  26. title: '运费模板管理',
  27. icon: 'Van',
  28. permission: 'shipping_template',
  29. children: [
  30. {
  31. path: '/shipping-template/list',
  32. title: '运费模板列表',
  33. icon: 'List'
  34. }
  35. ]
  36. }
  37. ]
  38. }