collection.vue 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212
  1. <template>
  2. <view class="app-container">
  3. <view class="list-container">
  4. <block v-for="(item, index) in dataList" :key='index'>
  5. <view class="item" @tap="toGoodsDetail(item.goodsId)" @longpress="handleDelete(item.goodsFavoriteId)">
  6. <image :src="item.imgUrl" mode="aspectFill"></image>
  7. <view class="content">
  8. <view class="title ellipsis-2">{{item.goodsName}}</view>
  9. <view class="bottom">
  10. <view class="price">
  11. <view class="price-1">¥{{item.goodsPrice | numToFixed}}</view>
  12. <view class="price-2">¥{{item.orgGoodsPrice | numToFixed}}</view>
  13. </view>
  14. <view class="btn"><image src="@/static/icon/cart.png" mode="aspectFill"></image></view>
  15. </view>
  16. </view>
  17. </view>
  18. </block>
  19. </view>
  20. <no-data v-if="!dataList.length" :showText="'暂无收藏商品'"></no-data>
  21. <loading-text v-if="dataList.length" :loading="loading" :noMore="noMore" ></loading-text>
  22. <modal-dialog showText="确定要取消收藏吗?" :isShowDialog="isDialog" @cancel="isDialog = false" @confirm="confirmDelete"></modal-dialog>
  23. <drag-button :isDock="true" :customBar="true" ref="dragButton"></drag-button>
  24. </view>
  25. </template>
  26. <script>
  27. import {mapState} from 'vuex';
  28. import modalDialog from '@/components/modalDialog.vue';
  29. import dragButton from '@/components/drag-button.vue';
  30. export default {
  31. components:{
  32. modalDialog,
  33. dragButton
  34. },
  35. data() {
  36. return {
  37. dataList: [],
  38. pageNum: 1,
  39. pageSize: 8,
  40. noMore: false,
  41. loading: false,
  42. deleteId: null,
  43. isDialog: false,
  44. }
  45. },
  46. computed:{
  47. ...mapState(['userInfo', 'isLogin', 'userId'])
  48. },
  49. onShow() {
  50. this.$refs.dragButton.init();
  51. },
  52. onLoad() {
  53. this.getGoodsList();
  54. },
  55. // 下拉刷新
  56. onPullDownRefresh() {
  57. this.pageNum = 1;
  58. this.getGoodsList();
  59. },
  60. // 上拉加载
  61. onReachBottom() {
  62. this.getGoodsList(1);
  63. },
  64. methods: {
  65. // 获取商品列表
  66. getGoodsList(loadMore) {
  67. if(this.noMore && loadMore)return;
  68. this.noMore = false
  69. if(!loadMore){
  70. this.pageNum = 1;
  71. }else{
  72. this.loading = true;
  73. }
  74. this.$axios({
  75. url: '/goods/favorite/query',
  76. method: 'get',
  77. params: {
  78. pageNum: this.pageNum,
  79. pageSize: this.pageSize,
  80. userId: this.userId,
  81. },
  82. isLoading: !loadMore
  83. }).then(res => {
  84. let _list = res.data.list;
  85. let pageTotal = res.data.pages;
  86. if(this.pageNum >= pageTotal){
  87. this.noMore = true;
  88. }
  89. if (_list && _list.length) {
  90. this.pageNum += 1
  91. }
  92. if (loadMore) {
  93. this.dataList = this.dataList.concat(_list);
  94. this.loading = false;
  95. } else {
  96. this.dataList = _list;
  97. }
  98. uni.stopPullDownRefresh();
  99. })
  100. },
  101. handleDelete(id) {
  102. this.deleteId = id;
  103. this.isDialog = true;
  104. },
  105. // 取消收藏
  106. confirmDelete() {
  107. this.$axios({
  108. url: '/goods/favorite/del',
  109. params: {
  110. goodFavoriteId: this.deleteId
  111. },
  112. isLoading: 1,
  113. }).then(res => {
  114. this.isDialog = false;
  115. this.$successToast('取消收藏成功');
  116. this.getGoodsList();
  117. })
  118. },
  119. toGoodsDetail(id) {
  120. uni.navigateTo({
  121. url: '/packageGoods/pages/detail?id=' + id
  122. })
  123. }
  124. }
  125. }
  126. </script>
  127. <style lang="scss">
  128. .app-container {
  129. background: #F4F2F2;
  130. box-sizing: border-box;
  131. }
  132. .list-container {
  133. display: flex;
  134. flex-wrap: wrap;
  135. padding: 20rpx;
  136. .item {
  137. width: 348rpx;
  138. background: #FFFFFF;
  139. margin-right: 14rpx;
  140. margin-bottom: 20rpx;
  141. border-radius: 20rpx;
  142. overflow: hidden;
  143. &:nth-child(2n) {
  144. margin-right: 0;
  145. }
  146. image {
  147. width: 348rpx;
  148. height: 348rpx;
  149. }
  150. .content {
  151. padding: 15rpx 20rpx;
  152. .title {
  153. font-size: 30rpx;
  154. color: #333333;
  155. line-height: 36rpx;
  156. font-weight: 600;
  157. height: 72rpx;
  158. }
  159. .bottom {
  160. display: flex;
  161. justify-content: space-between;
  162. align-items: center;
  163. margin-top: 10rpx;
  164. .price {
  165. display: flex;
  166. flex-direction: column;
  167. }
  168. .price-1 {
  169. font-size: 32rpx;
  170. color: #FF3F42;
  171. line-height: 36rpx;
  172. }
  173. .price-2 {
  174. font-size: 26rpx;
  175. color: #666666;
  176. line-height: 30rpx;
  177. text-decoration: line-through;
  178. }
  179. .btn {
  180. width: 60rpx;
  181. height: 60rpx;
  182. background: #FE781F;
  183. border-radius: 50%;
  184. display: flex;
  185. align-items: center;
  186. justify-content: center;
  187. image {
  188. width: 41rpx;
  189. height: 36rpx;
  190. display: block;
  191. }
  192. }
  193. }
  194. }
  195. }
  196. }
  197. </style>