router.js 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. import Layout from '@/layout/index';
  2. const customerFundManagementRouter = {
  3. path: '/customerFundManagement',
  4. component: Layout,
  5. redirect: { name: 'customerFundList' },
  6. name: 'customerFundList',
  7. alwaysShow: true, // will always show the root menu
  8. meta: {
  9. title: 'customerFundList',
  10. module: 'customerMoneyManagement.customerMoney.view',
  11. icon: '-kehuzijin'
  12. },
  13. children: [
  14. //客户资金管理列表
  15. {
  16. path: 'customerFundList',
  17. component: () =>
  18. import(/* webpackChunkName: "applDetail" */ '@/views/customerFundManagement/customerFundList'),
  19. name: 'customerFundList',
  20. meta: {
  21. title: 'customerFundList',
  22. shortcutEntrance: 'customerFundList',
  23. module: 'customerMoneyManagement.customerMoney.view',
  24. permissicon: [],
  25. keepAlive: true
  26. },
  27. hidden: true
  28. },
  29. //客户资金管理编辑
  30. {
  31. path: 'customerFundEdit',
  32. component: () =>
  33. import(/* webpackChunkName: "applDetail" */ '@/views/customerFundManagement/customerFundEdit'),
  34. name: 'customerFundEdit',
  35. meta: {
  36. title: 'customerFundEdit',
  37. shortcutEntrance: 'customerFundManagement',
  38. module: 'customerMoneyManagement.customerMoney.edit',
  39. permissicon: [],
  40. keepAlive: true
  41. },
  42. hidden: true
  43. },
  44. //客户资金管理添加
  45. {
  46. path: 'customerFundAdd',
  47. component: () =>
  48. import(/* webpackChunkName: "applDetail" */ '@/views/customerFundManagement/customerFundAdd'),
  49. name: 'customerFundAdd',
  50. meta: {
  51. title: 'customerFundAdd',
  52. shortcutEntrance: 'customerFundManagement',
  53. module: 'customerMoneyManagement.customerMoney.audit',
  54. permissicon: [],
  55. keepAlive: true
  56. // module: 'procurement.sparepart.applDetail'
  57. },
  58. hidden: true
  59. },
  60. ],
  61. };
  62. export default customerFundManagementRouter;