route.js 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. import Layout from '@/layout/index';
  2. const platformauditRouter = {
  3. path: '/platformaudit',
  4. component: Layout,
  5. redirect: '/platformaudit',
  6. name: 'platformaudit',
  7. alwaysShow: true, // will always show the root menu
  8. meta: {
  9. title: 'platformaudit',
  10. module: 'audit',
  11. icon: '-shenhe'
  12. },
  13. children: [
  14. // // 粮商审核
  15. // {
  16. // path: 'grainmerchantreview',
  17. // component: () =>
  18. // import ( /* webpackChunkName: "applDetail" */ '@/views/platformaudit/grainmerchantreview'),
  19. // name: 'grainmerchantreview',
  20. // meta: {
  21. // title: 'grainmerchantreview',
  22. // shortcutEntrance: 'grainmerchantreview',
  23. // module: 'audit.grainMerchant.grainMerchantInfo',
  24. // permissicon: [],
  25. // keepAlive: true,
  26. // _title: '粮商审核'
  27. // },
  28. // },
  29. // //司机审核
  30. // {
  31. // path: 'driverreview',
  32. // component: () =>
  33. // import ( /* webpackChunkName: "applDetail" */ '@/views/platformaudit/driverreview'),
  34. // name: 'driverreview',
  35. // meta: {
  36. // title: 'driverreview',
  37. // shortcutEntrance: 'driverreview',
  38. // module: 'audit.driverMerchant.driverMerchantInfo',
  39. // permissicon: [],
  40. // keepAlive: true,
  41. // _title: '司机审核'
  42. // },
  43. // },
  44. // //采购交易信息审核
  45. // {
  46. // path: 'transactioninformationreview',
  47. // component: () =>
  48. // import ( /* webpackChunkName: "applDetail" */ '@/views/platformaudit/transactioninformationreview'),
  49. // name: 'transactioninformationreview',
  50. // meta: {
  51. // title: 'transactioninformationreview',
  52. // shortcutEntrance: 'transactioninformationreview',
  53. // module: 'audit.tranMerchant.tranMerchantInfo',
  54. // permissicon: [],
  55. // keepAlive: true,
  56. // _title: '采购信息审核'
  57. // },
  58. // },
  59. // //销售交易信息审核
  60. // {
  61. // path: 'saletransactioninformationreview',
  62. // component: () =>
  63. // import ( /* webpackChunkName: "applDetail" */ '@/views/platformaudit/saletransactioninformationreview'),
  64. // name: 'saletransactioninformationreview',
  65. // meta: {
  66. // title: 'saletransactioninformationreview',
  67. // shortcutEntrance: 'saletransactioninformationreview',
  68. // module: 'audit.tranMerchant.tranMerchantInfo',
  69. // permissicon: [],
  70. // keepAlive: true,
  71. // _title: '销售信息审核'
  72. // },
  73. // },
  74. // //粮脉企业审核
  75. // {
  76. // path: 'grainpulseenterprisereview',
  77. // component: () =>
  78. // import ( /* webpackChunkName: "applDetail" */ '@/views/platformaudit/grainpulseenterprisereview'),
  79. // name: 'grainpulseenterprisereview',
  80. // meta: {
  81. // title: 'grainpulseenterprisereview',
  82. // shortcutEntrance: 'grainpulseenterprisereview',
  83. // module: 'audit.tranMerchant.tranMerchantInfo',
  84. // permissicon: [],
  85. // keepAlive: true,
  86. // _title: '粮脉企业审核'
  87. // },
  88. // },
  89. // //粮脉动态审核
  90. // {
  91. // path: 'grainPulseDynamic',
  92. // component: () =>
  93. // import ( /* webpackChunkName: "applDetail" */ '@/views/platformaudit/grainPulseDynamic'),
  94. // name: 'grainPulseDynamic',
  95. // meta: {
  96. // title: 'grainPulseDynamic',
  97. // shortcutEntrance: 'grainPulseDynamic',
  98. // module: 'audit.grainMerchant.grainMerchantInfo.review',
  99. // permissicon: [],
  100. // keepAlive: true,
  101. // _title: '粮脉动态审核'
  102. // },
  103. // },
  104. // //交易信息审核
  105. // {
  106. // path: 'tradeInformation',
  107. // component: () =>
  108. // import ( /* webpackChunkName: "applDetail" */ '@/views/platformaudit/tradeInformation'),
  109. // name: 'tradeInformation',
  110. // meta: {
  111. // title: 'tradeInformation',
  112. // shortcutEntrance: 'tradeInformation',
  113. // module: 'audit.grainMerchant.grainMerchantInfo.review',
  114. // permissicon: [],
  115. // keepAlive: true,
  116. // _title: '交易信息审核'
  117. // },
  118. // },
  119. // // 客服留言
  120. // {
  121. // path: 'customerService',
  122. // component: () =>
  123. // import ( /* webpackChunkName: "applDetail" */ '@/views/platformaudit/customerService'),
  124. // name: 'customerService',
  125. // meta: {
  126. // title: 'customerService',
  127. // shortcutEntrance: 'customerService',
  128. // module: 'audit.grainMerchant.grainMerchantInfo',
  129. // permissicon: [],
  130. // keepAlive: true,
  131. // _title: '客服留言'
  132. // },
  133. // },
  134. ],
  135. };
  136. export default platformauditRouter;