refund.js 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. /** When your routing table is too long, you can split it into small modules **/
  2. import Layout from "@/layout";
  3. const refundRouter = {
  4. path: "/refund",
  5. component: Layout,
  6. redirect: "/refund/refundList",
  7. name: "afterSales",
  8. meta: { title: "afterSalesNew", icon: "refund" },
  9. children: [
  10. {
  11. path: "refundList",
  12. component: () => import("@/views/oms/refund/refundList"),
  13. name: "refundList",
  14. meta: { title: "refundManagement" }
  15. },
  16. // {
  17. // path: "abnormalRefundList",
  18. // component: () => import("@/views/oms/refund/abnormalRefundList"),
  19. // name: "abnormalRefundList",
  20. // meta: { title: "abnormalRefundList" }
  21. // },
  22. {
  23. path: "refundCwList",
  24. component: () => import("@/views/oms/refund/refundCwList"),
  25. name: "refundCwList",
  26. meta: { title: "financialAudit" }
  27. },
  28. {
  29. path: "returnList",
  30. // component: () => import("@/views/oms/refund/returnList.vue"),
  31. component: () => import("@/views/oms/refund/returnDetailList.vue"),
  32. name: "returnList",
  33. meta: { title: "returnManagement" }
  34. },
  35. {
  36. path: "refundReason",
  37. component: () => import("@/views/oms/refund/refundReason.vue"),
  38. name: "refundReason",
  39. meta: { title: "refundReasons" }
  40. },
  41. {
  42. path: "autoRefund",
  43. component: () => import("@/views/oms/refund/autoRefund.vue"),
  44. name: "autoRefund",
  45. meta: { title: "自动退款配置" }
  46. },
  47. {
  48. path: "shippingFeeRule",
  49. component: () => import("@/views/oms/refund/shippingFeeRule.vue"),
  50. name: "shippingFeeRule",
  51. meta: { title: "slFreightRules" }
  52. }
  53. ]
  54. };
  55. export default refundRouter;