three-catgory.vue 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209
  1. <template>
  2. <view class="content_box">
  3. <view class="u-flex u-col-center wrapper-box">
  4. <view class="scroll-box" style="background-color: #F6F6F6;">
  5. <scroll-view class="left u-flex-col u-col-center" enable-flex enable-back-to-top scroll-y>
  6. <view class="type-list u-ellipsis-1" :class="[{ 'list-active': listId == index }]" v-for="(item, index) in categoryData" :key="index" @tap="onType(index)">
  7. <view class="line" :class="[{ 'line-active': listId == index }]"></view>
  8. {{ item.name }}
  9. </view>
  10. <view class="hack-tabbar"></view>
  11. </scroll-view>
  12. </view>
  13. <view style="height: 100%;width: 100%;">
  14. <scroll-view scroll-y class="scroll-box" enable-flex enable-back-to-top scroll-with-animation>
  15. <view class="right" v-if="categoryData.length">
  16. <image class="type-img" v-if="categoryData[listId].image" :src="categoryData[listId].image" mode="aspectFill"></image>
  17. <view class="item-list" v-for="(list, index1) in categoryData[listId].children" :key="index1">
  18. <view class="type-box u-flex u-row-between u-col-center">
  19. <text class="type-title">{{ list.name }}</text>
  20. <view class="more u-flex u-col-center" @tap="jump('/pages/goods/list', { id: list.id })">
  21. <text>查看更多</text>
  22. <view class="u-iconfont uicon-arrow-right" style="color: #999;font-size: 28rpx;"></view>
  23. </view>
  24. </view>
  25. <view class="item-box u-flex">
  26. <view class="u-flex-col goods-item" @tap="jump('/pages/goods/list', { id: mlist.id })" v-for="(mlist, index2) in list.children" :key="index2">
  27. <image class="item-img" lazy-load :src="mlist.image" mode="aspectFill"></image>
  28. <view class="item-title u-ellipsis-1 ">{{ mlist.name }}</view>
  29. </view>
  30. </view>
  31. </view>
  32. <!-- 缺省页 -->
  33. <shopro-empty
  34. v-show="!categoryData[listId].children.length"
  35. :image="$IMG_URL + '/imgs/empty/empty_goods.png'"
  36. tipText="暂无该商品,还有更多好货等着你噢~"
  37. ></shopro-empty>
  38. <view class="hack-tabbar"></view>
  39. </view>
  40. </scroll-view>
  41. </view>
  42. </view>
  43. </view>
  44. </template>
  45. <script>
  46. import { mapMutations, mapActions, mapState, mapGetters } from 'vuex';
  47. export default {
  48. components: {},
  49. data() {
  50. return {
  51. listId: 0,
  52. categoryData: {}
  53. };
  54. },
  55. computed: {},
  56. props: {
  57. categoryStyleId: {
  58. type: Number,
  59. default: 0
  60. }
  61. },
  62. async created() {
  63. console.log('%c当前分类:三级分类', 'color:green;background:yellow');
  64. await this.getCategory();
  65. },
  66. methods: {
  67. getCategory() {
  68. this.$http('category.detail', {
  69. id: this.categoryStyleId
  70. }).then(res => {
  71. if (res.code === 1) {
  72. this.categoryData = res.data.children;
  73. }
  74. });
  75. },
  76. onType(id) {
  77. this.listId = id;
  78. },
  79. // 路由跳转
  80. jump(path, parmas) {
  81. this.$Router.push({
  82. path: path,
  83. query: parmas
  84. });
  85. }
  86. }
  87. };
  88. </script>
  89. <style lang="scss">
  90. .hack-tabbar {
  91. height: calc(100rpx + env(safe-area-inset-bottom) / 2);
  92. width: 100%;
  93. }
  94. .content_box {
  95. margin-top: 1upx;
  96. display: flex;
  97. flex-direction: column;
  98. overflow: hidden;
  99. height: 100%;
  100. }
  101. .wrapper-box {
  102. flex: 1;
  103. margin-top: 1upx;
  104. height: 100%;
  105. }
  106. .scroll-box {
  107. height: 100%;
  108. flex: 1;
  109. background: #fff;
  110. }
  111. .left {
  112. width: 200upx;
  113. height: 100%;
  114. flex: 1;
  115. .list-active {
  116. background: #fff;
  117. color: #333333 !important;
  118. font-weight: bold !important;
  119. }
  120. .line-active {
  121. background: #e6b873;
  122. }
  123. .type-list {
  124. height: 84upx;
  125. position: relative;
  126. width: 200rpx;
  127. padding-left: 16rpx;
  128. line-height: 84rpx;
  129. font-size: 28upx;
  130. font-weight: 400;
  131. color: rgba(102, 102, 102, 1);
  132. .line {
  133. width: 10upx;
  134. height: 100%;
  135. position: absolute;
  136. left: 0;
  137. }
  138. }
  139. }
  140. .right {
  141. padding: 0 30upx;
  142. flex: 1;
  143. height: 100%;
  144. .type-img {
  145. width: 505rpx;
  146. height: 150rpx;
  147. background: #ccc;
  148. border-radius: 10rpx;
  149. margin-top: 30rpx;
  150. }
  151. .item-list {
  152. .type-box {
  153. height: 84rpx;
  154. .type-title {
  155. font-size: 28rpx;
  156. font-weight: bold;
  157. }
  158. .more {
  159. font-size: 26rpx;
  160. color: #999;
  161. }
  162. }
  163. .item-box {
  164. flex-wrap: wrap;
  165. .goods-item {
  166. margin-right: 20rpx;
  167. margin-bottom: 20rpx;
  168. &:nth-child(3n) {
  169. margin-right: 0;
  170. }
  171. .item-img {
  172. width: 150rpx;
  173. height: 150rpx;
  174. background: #f5f5f5;
  175. border-radius: 6rpx;
  176. }
  177. .item-title {
  178. font-size: 24rpx;
  179. line-height: 24rpx;
  180. margin-top: 10rpx;
  181. width: 150rpx;
  182. text-align: center;
  183. }
  184. }
  185. }
  186. }
  187. }
  188. </style>