search.vue 4.3 KB

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