Breadcrumb.vue 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. <template>
  2. <div class="wrap">
  3. <el-breadcrumb separator-class="el-icon-arrow-right">
  4. <el-breadcrumb-item :to="{ path: '/' }">Home</el-breadcrumb-item>
  5. <el-breadcrumb-item @click.native="goCategory()">All</el-breadcrumb-item>
  6. <el-breadcrumb-item
  7. v-for="(item, index) in comCategoryList"
  8. :key="item.id"
  9. @click.native="goCategory(index)"
  10. >{{ item.name }}</el-breadcrumb-item>
  11. <el-breadcrumb-item class="last-bread">{{ pageData.product_code }}</el-breadcrumb-item>
  12. </el-breadcrumb>
  13. </div>
  14. </template>
  15. <script>
  16. export default {
  17. props: {
  18. pageData: {
  19. type: Object,
  20. default: () => {},
  21. },
  22. },
  23. computed: {
  24. comCategoryList() {
  25. let arr = [];
  26. this.recursive(arr, this.pageData.category_list);
  27. return arr;
  28. },
  29. },
  30. methods: {
  31. recursive(arr = [], obj) {
  32. let temp = {};
  33. temp.id = obj.id ? obj.id : null;
  34. temp.name = obj.name ? obj.name : null;
  35. temp.pid = obj.pid ? obj.pid : null;
  36. arr.push(temp);
  37. if (obj.child) {
  38. this.recursive(arr, obj.child);
  39. }
  40. },
  41. goCategory(index) {
  42. switch (index) {
  43. case 0:
  44. this.$router.push({
  45. name: "category-firstCategory",
  46. params: {
  47. firstCategory: this.comCategoryList[0].name
  48. .replace(/\s+/g, "-")
  49. .replace("-&", "")
  50. .toLowerCase(),
  51. },
  52. });
  53. break;
  54. case 1:
  55. this.$router.push({
  56. name: "category-firstCategory-secondCategory",
  57. params: {
  58. firstCategory: this.comCategoryList[0].name
  59. .replace(/\s+/g, "-")
  60. .replace("-&", "")
  61. .toLowerCase(),
  62. secondCategory: this.comCategoryList[1].name
  63. .replace(/\s+/g, "-")
  64. .replace("-&", "")
  65. .toLowerCase(),
  66. },
  67. });
  68. break;
  69. case 2:
  70. this.$router.push({
  71. name: "category-firstCategory-secondCategory-thirdCategory",
  72. params: {
  73. firstCategory: this.comCategoryList[0].name
  74. .replace(/\s+/g, "-")
  75. .replace("-&", "")
  76. .toLowerCase(),
  77. secondCategory: this.comCategoryList[1].name
  78. .replace(/\s+/g, "-")
  79. .replace("-&", "")
  80. .toLowerCase(),
  81. thirdCategory: this.comCategoryList[2].name
  82. .replace(/\s+/g, "-")
  83. .replace("-&", "")
  84. .toLowerCase()
  85. },
  86. });
  87. break;
  88. default:
  89. this.$router.push({ path: '/category' })
  90. }
  91. },
  92. },
  93. };
  94. </script>
  95. <style lang="scss" scoped>
  96. .wrap {
  97. margin-bottom: 15px;
  98. margin-top: 21px;
  99. }
  100. </style>