list.vue 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272
  1. <template>
  2. <view class="app-container">
  3. <view class="top-container">
  4. <view class="item" :class="screenType === 0 ? 'current':''" @tap="changeScreen(0)">综合</view>
  5. <view class="item" :class="screenType === 1 ? 'current':''" @tap="changeScreen(1)">销量</view>
  6. <view class="item" :class="screenType === 2 || screenType === 3 ? 'current':''" @tap="changeScreen(2)">价格
  7. <image src="@/static/icon/price_1.png" v-if="screenType === 2"></image>
  8. <image src="@/static/icon/price_2.png" v-if="screenType === 3"></image>
  9. <image src="@/static/icon/price_0.png" v-if="screenType != 2 && screenType != 3"></image>
  10. </view>
  11. <view class="item" :class="screenType === 4 ? 'current':''" @tap="changeScreen(4)">上新</view>
  12. </view>
  13. <view class="list-container">
  14. <block v-for="(item, index) in goodsList" :key='index'>
  15. <view class="item" @tap="toGoodsDetail(item.goodsId)">
  16. <view class="image">
  17. <image :src="item.imgUrl" mode="aspectFill" class="img"></image>
  18. <image :src="item.logo" mode="aspectFill" class="water" v-if="item.isShowWater"></image>
  19. </view>
  20. <view class="content">
  21. <view class="title ellipsis-2">{{item.goodsName}}</view>
  22. <view class="bottom">
  23. <view class="price">
  24. <view class="price-1">¥{{item.goodsPrice | numToFixed}}</view>
  25. <view class="price-2">¥{{item.orgGoodsPrice | numToFixed}}</view>
  26. </view>
  27. <view class="btn"><image src="@/static/icon/cart.png" mode="aspectFill"></image></view>
  28. </view>
  29. </view>
  30. </view>
  31. </block>
  32. </view>
  33. <no-data v-if="!goodsList.length" :showText="'暂无商品'"></no-data>
  34. <loading-text v-if="goodsList.length" :loading="loading" :noMore="noMore" ></loading-text>
  35. <drag-button :isDock="true" :customBar="true" ref="dragButton"></drag-button>
  36. </view>
  37. </template>
  38. <script>
  39. import dragButton from '@/components/drag-button.vue';
  40. export default {
  41. components:{
  42. dragButton
  43. },
  44. data() {
  45. return {
  46. cid: '',
  47. screenType: '',
  48. goodsList: [],
  49. pageNum: 1,
  50. pageSize: 8,
  51. noMore: false,
  52. loading: false,
  53. }
  54. },
  55. onShow() {
  56. this.$refs.dragButton.init();
  57. },
  58. onLoad({cid, cname}) {
  59. uni.setNavigationBarTitle({
  60.   title: cname
  61. })
  62. this.cid = cid;
  63. this.getGoodsList();
  64. },
  65. // 下拉刷新
  66. onPullDownRefresh() {
  67. this.pageNum = 1;
  68. this.getGoodsList();
  69. },
  70. // 上拉加载
  71. onReachBottom() {
  72. this.getGoodsList(1);
  73. },
  74. methods: {
  75. // 切换筛选类型
  76. changeScreen(type) {
  77. if(type != 2) {
  78. if(this.screenType !== type) {
  79. this.screenType = type;
  80. }else {
  81. this.screenType = '';
  82. }
  83. }else {
  84. if(this.screenType != 2 && this.screenType != 3) {
  85. this.screenType = 2;
  86. }else if(this.screenType == 2) {
  87. this.screenType = 3;
  88. }else {
  89. this.screenType = '';
  90. }
  91. }
  92. this.pageNum = 1;
  93. this.getGoodsList();
  94. },
  95. // 获取商品列表
  96. getGoodsList(loadMore) {
  97. if(this.noMore && loadMore)return;
  98. this.noMore = false
  99. if(!loadMore){
  100. this.pageNum = 1;
  101. }else{
  102. this.loading = true;
  103. }
  104. this.$axios({
  105. url: '/goods/list/sort/page',
  106. method: 'get',
  107. params: {
  108. pageNum: this.pageNum,
  109. pageSize: this.pageSize,
  110. categoryId: this.cid,
  111. sort: this.screenType
  112. },
  113. isLoading: !loadMore
  114. }).then(res => {
  115. res.data.records.forEach(item => {
  116. if(item.logo && item.logoStartTime) {
  117. item.isShowWater = this.$compareTime(item.logoStartTime, item.logoEndTime);
  118. }else {
  119. item.isShowWater = false;
  120. }
  121. })
  122. let _list = res.data.records;
  123. let pageTotal = res.data.pages;
  124. if(this.pageNum >= pageTotal){
  125. this.noMore = true;
  126. }
  127. if (_list.length) {
  128. this.pageNum += 1
  129. }
  130. if (loadMore) {
  131. this.goodsList = this.goodsList.concat(_list);
  132. this.loading = false;
  133. } else {
  134. this.goodsList = _list;
  135. }
  136. uni.stopPullDownRefresh();
  137. })
  138. },
  139. toGoodsDetail(id) {
  140. uni.navigateTo({
  141. url: '/packageGoods/pages/detail?id=' + id
  142. })
  143. }
  144. }
  145. }
  146. </script>
  147. <style lang="scss">
  148. .app-container {
  149. background: #F4F2F2;
  150. padding-top: 88rpx;
  151. box-sizing: border-box;
  152. }
  153. .top-container {
  154. position: fixed;
  155. top: 0;
  156. left: 0;
  157. width: 100%;
  158. background: #FFFFFF;
  159. display: flex;
  160. .item {
  161. width: 25%;
  162. height: 88rpx;
  163. display: flex;
  164. align-items: center;
  165. justify-content: center;
  166. font-size: 30rpx;
  167. color: #666666;
  168. &.current {
  169. color: #FF3F42;
  170. }
  171. image {
  172. width: 20rpx;
  173. height: 30rpx;
  174. display: block;
  175. margin-left: 10rpx;
  176. }
  177. }
  178. }
  179. .list-container {
  180. display: flex;
  181. flex-wrap: wrap;
  182. padding: 20rpx;
  183. .item {
  184. width: 348rpx;
  185. background: #FFFFFF;
  186. margin-right: 14rpx;
  187. margin-bottom: 20rpx;
  188. border-radius: 20rpx;
  189. overflow: hidden;
  190. &:nth-child(2n) {
  191. margin-right: 0;
  192. }
  193. .image {
  194. width: 348rpx;
  195. height: 348rpx;
  196. flex-shrink: 0;
  197. position: relative;
  198. .img {
  199. width: 348rpx;
  200. height: 348rpx;
  201. display: block;
  202. }
  203. .water {
  204. width: 348rpx;
  205. height: 348rpx;
  206. display: block;
  207. position: absolute;
  208. left: 0;
  209. top: 0;
  210. z-index: 1;
  211. }
  212. }
  213. .content {
  214. padding: 15rpx 20rpx;
  215. .title {
  216. font-size: 30rpx;
  217. color: #333333;
  218. line-height: 36rpx;
  219. font-weight: 600;
  220. height: 72rpx;
  221. }
  222. .bottom {
  223. display: flex;
  224. justify-content: space-between;
  225. align-items: center;
  226. margin-top: 10rpx;
  227. .price {
  228. display: flex;
  229. flex-direction: column;
  230. }
  231. .price-1 {
  232. font-size: 32rpx;
  233. color: #FF3F42;
  234. line-height: 36rpx;
  235. }
  236. .price-2 {
  237. font-size: 26rpx;
  238. color: #666666;
  239. line-height: 30rpx;
  240. text-decoration: line-through;
  241. }
  242. .btn {
  243. width: 60rpx;
  244. height: 60rpx;
  245. background: #FE781F;
  246. border-radius: 50%;
  247. display: flex;
  248. align-items: center;
  249. justify-content: center;
  250. image {
  251. width: 41rpx;
  252. height: 36rpx;
  253. display: block;
  254. }
  255. }
  256. }
  257. }
  258. }
  259. }
  260. </style>