favorite.vue 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  1. <!-- 收藏列表 -->
  2. <template>
  3. <view class="page_box">
  4. <!-- 总收藏数 -->
  5. <view class="head_box u-flex u-row-between" v-show="!isEmpty">
  6. <view class="count-box">
  7. <text class="all-num">{{ total }}</text>
  8. 件商品
  9. </view>
  10. <button class="set-btn u-reset-button" @tap="onSet">{{ isEdit ? '完成' : '编辑' }}</button>
  11. </view>
  12. <!-- 收藏列表 -->
  13. <view class="content_box">
  14. <scroll-view scroll-y="true" @scrolltolower="loadMore" class="scroll-box">
  15. <u-checkbox-group @change="checkboxGroupChange" activeColor="#e9b461">
  16. <view class="collect-list u-flex" v-for="f in favoriteList" :key="f.id">
  17. <u-checkbox v-show="isEdit" :name="f.goods_id" shape="circle" v-model="f.checked"></u-checkbox>
  18. <shopro-mini-card
  19. :image="f.goods.image"
  20. :title="f.goods.title"
  21. :price="f.goods.price"
  22. :originPrice="f.goods.original_price"
  23. :subtitle="f.goods.subtitle"
  24. @click="$Router.push({ path: '/pages/goods/detail', query: { id: f.goods_id } })"
  25. ></shopro-mini-card>
  26. </view>
  27. </u-checkbox-group>
  28. <!-- 缺省页 -->
  29. <shopro-empty
  30. v-if="isEmpty"
  31. :image="$IMG_URL + '/imgs/empty/empty_goods.png'"
  32. tipText="暂无收藏"
  33. btnText="去首页逛逛"
  34. @click="$Router.pushTab('/pages/index/index')"
  35. ></shopro-empty>
  36. <!-- 更多 -->
  37. <u-loadmore v-show="!isEmpty" height="80rpx" :status="loadStatus" icon-type="flower" color="#ccc" />
  38. </scroll-view>
  39. </view>
  40. <view class="foot_box ">
  41. <view class="tools-box u-flex u-row-between u-flex-1" v-show="isEdit && !isEmpty">
  42. <u-checkbox shape="circle" activeColor="#e9b461" @change="onAllSel" v-model="isAllSel"><text>全选</text></u-checkbox>
  43. <button class="u-reset-button close-btn" @tap="cancelFavorite">取消收藏</button>
  44. </view>
  45. </view>
  46. </view>
  47. </template>
  48. <script>
  49. export default {
  50. components: {},
  51. data() {
  52. return {
  53. isEmpty: false,
  54. isEdit: false,
  55. isAllSel: false, //是否全选
  56. selList: [],
  57. favoriteList: [],
  58. total: 0,
  59. loadStatus: 'loadmore', //loadmore-加载前的状态,loading-加载中的状态,nomore-没有更多的状态
  60. currentPage: 1,
  61. lastPage: 1
  62. };
  63. },
  64. computed: {},
  65. onLoad() {
  66. this.getFavoriteList();
  67. },
  68. methods: {
  69. // 单选
  70. checkboxGroupChange(e) {
  71. this.selList = e;
  72. this.isAllSel = this.favoriteList.every(item => item.checked);
  73. },
  74. // 编辑
  75. onSet() {
  76. this.isEdit = !this.isEdit;
  77. },
  78. // 全选
  79. onAllSel(e) {
  80. this.isAllSel = e.value;
  81. this.selList = [];
  82. this.favoriteList.forEach(item => {
  83. e.value && this.selList.push(item.goods_id);
  84. this.$set(item, 'checked', e.value);
  85. });
  86. },
  87. // 加载更多
  88. loadMore() {
  89. if (this.currentPage < this.lastPage) {
  90. this.currentPage += 1;
  91. this.getFavoriteList();
  92. }
  93. },
  94. // 收藏列表
  95. getFavoriteList() {
  96. let that = this;
  97. let list = [];
  98. that.loadStatus = 'loading';
  99. that.$http('user.favoriteList', {
  100. pre_page: 10,
  101. page: that.currentPage
  102. }).then(res => {
  103. if (res.code === 1) {
  104. that.total = res.data.total;
  105. list = res.data.data;
  106. list.map(item => {
  107. that.$set(item, 'checked', false);
  108. });
  109. that.favoriteList = [...that.favoriteList, ...list];
  110. that.isEmpty = !that.favoriteList.length;
  111. that.lastPage = res.data.last_page;
  112. that.loadStatus = that.currentPage < res.data.last_page ? 'loadmore' : 'nomore';
  113. }
  114. });
  115. },
  116. // 取消收藏
  117. cancelFavorite() {
  118. let that = this;
  119. let { favoriteList, selList } = this;
  120. favoriteList = JSON.parse(JSON.stringify(favoriteList));
  121. that.$http('goods.favorite', {
  122. goods_ids: selList
  123. }).then(res => {
  124. if (res.code === 1) {
  125. if (that.isAllSel) {
  126. that.favoriteList = [];
  127. that.isEmpty = true;
  128. } else {
  129. that.favoriteList = favoriteList.filter(f => !selList.includes(f.goods_id));
  130. that.total = that.favoriteList.length;
  131. }
  132. }
  133. });
  134. }
  135. }
  136. };
  137. </script>
  138. <style lang="scss">
  139. .head_box {
  140. height: 70rpx;
  141. padding: 0 30rpx;
  142. .count-box {
  143. font-size: 26rpx;
  144. color: #999;
  145. .all-num {
  146. color: #a8700d;
  147. }
  148. }
  149. .set-btn {
  150. background: none;
  151. font-size: 26rpx;
  152. color: #a8700d;
  153. padding: 20rpx;
  154. }
  155. }
  156. .collect-list {
  157. padding: 30rpx 20rpx;
  158. background: #fff;
  159. width: 750rpx;
  160. margin-bottom: 20rpx;
  161. }
  162. .tools-box {
  163. height: 100rpx;
  164. width: 750rpx;
  165. padding: 0 20rpx;
  166. background: #fff;
  167. .close-btn {
  168. width: 200rpx;
  169. line-height: 70rpx;
  170. background: linear-gradient(90deg, rgba(233, 180, 97, 1), rgba(238, 204, 137, 1));
  171. box-shadow: 0px 7rpx 6rpx 0px rgba(229, 138, 0, 0.22);
  172. border-radius: 35rpx;
  173. padding: 0;
  174. color: rgba(#fff, 0.9);
  175. }
  176. }
  177. </style>