list.vue 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. <template>
  2. <view>
  3. <view class="search">
  4. <u-search placeholder="搜索商品或车牌号" v-model="param.goodsName" bgColor="white" @search="refresh()" :animation="true" actionText="取消" @clear="refresh()"></u-search>
  5. <view class="clear"></view>
  6. </view>
  7. <view class="goodsList">
  8. <view class="sort-list">
  9. <view class="sort-item" :class="{ active: item.check }" v-for="(item, index) in sort" :key="index" @click="select(item, index)">
  10. <text>{{ item.name }}</text>
  11. <text v-if="index > 0 && item.isAsc == 'desc'" class="icon">&#xeb0a;</text>
  12. <text v-if="index > 0 && item.isAsc == 'asc'" class="icon">&#xeb0b;</text>
  13. </view>
  14. <view class="type" @click="go()">
  15. <text>{{ param.goodsType || '分类' }}</text>
  16. <text class="icon">&#xe8f2;</text>
  17. </view>
  18. </view>
  19. <view class="item" v-for="(item, index) in list" :key="index" @click="detail(item)">
  20. <view class="title">{{ item.createName }}</view>
  21. <image src="../../../static/news.jpg" mode="aspectFill" class="pic"></image>
  22. <view class="con">
  23. <view class="productName omit">{{ item.goodsName }}</view>
  24. <view class="price">¥ {{ item.resalePrice }}</view>
  25. <view class="desc">车牌号:{{ item.veNo }}</view>
  26. <view class="icon btn" v-if="user.userType == 3" @click.stop="addCar(item)">&#xe600;</view>
  27. <view class="btn" v-if="user.userType == 3" @click.stop="buy(item)">购买</view>
  28. </view>
  29. </view>
  30. <view class="loading" v-if="loadMore"><u-loadmore :status="loadMore ? 'loading' : 'nomore'" /></view>
  31. <u-empty v-if="!loadMore && list.length == 0"></u-empty>
  32. </view>
  33. <productType v-model="show"></productType>
  34. <button class="addBtn" @click="goCar()" v-if="user.userType == 3">
  35. <text class="icon">&#xe600;</text>
  36. <view class="bag animated" :class="{ bounce: add }" v-if="cars > 0">{{ cars }}</view>
  37. </button>
  38. </view>
  39. </template>
  40. <script>
  41. export default {
  42. data() {
  43. return {
  44. user: this.getUser(),
  45. show: false,
  46. isAsc: 'desc',
  47. cars: 0,
  48. add: false,
  49. sort: [
  50. { name: '综合', sortName: 'id', isAsc: 'desc', check: false },
  51. { name: '日期', sortName: 'create_time', isAsc: 'desc', check: false },
  52. { name: '数量', sortName: 'goods_quantity', isAsc: 'desc', check: false }
  53. ],
  54. list: [],
  55. param: { pageNo: 1, pageSize: 10 },
  56. loadMore: true
  57. };
  58. },
  59. onLoad(e) {
  60. this.getData();
  61. //选择商品分类
  62. uni.$on('productType', res => {
  63. this.param.goodsType = res.name;
  64. this.param.current = res.current;
  65. this.param.now = res.now;
  66. this.refresh();
  67. });
  68. },
  69. methods: {
  70. select(item, index) {
  71. this.sort.forEach(it => (it.check = false));
  72. item.check = true;
  73. if (index > 0) {
  74. this.isAsc = this.isAsc == 'desc' ? 'asc' : 'desc';
  75. item.isAsc = this.isAsc;
  76. }
  77. this.param.orderBy = item.sortName + ' ' + this.isAsc;
  78. this.refresh();
  79. },
  80. getData() {
  81. this.http.request({
  82. url: '/level-two-server/app/TbOrders/getLevelTwoList',
  83. data: this.param,
  84. loading: 'false',
  85. success: res => {
  86. this.loadMore = parseInt(res.data.pageCount) > this.param.pageNo;
  87. this.list.push(...res.data.data);
  88. }
  89. });
  90. },
  91. //选择分类
  92. go() {
  93. uni.navigateTo({ url: '/pages/market/productType?current=' + this.param.current + '&now=' + this.param.now });
  94. },
  95. detail(item) {
  96. uni.navigateTo({ url: '/pages/market/two/detail?orderId=' + item.id });
  97. },
  98. addCar(item) {
  99. this.add = true;
  100. this.http.request({
  101. url: '/level-two-server/app/TbOrdersCart/add',
  102. method: 'POST',
  103. data: { orderId: item.id },
  104. success: res => {
  105. this.cars++;
  106. setTimeout(() => {
  107. this.add = false;
  108. }, 500);
  109. uni.showToast({ title: '添加成功' });
  110. }
  111. });
  112. },
  113. goCar() {
  114. uni.navigateTo({ url: '/pages/market/two/purchaser/order/cart' });
  115. },
  116. buy(item) {
  117. uni.navigateTo({ url: '/pages/market/two/purchaser/buy/buy?orderId=' + item.id });
  118. },
  119. //刷新数据
  120. refresh() {
  121. this.loadMore = true;
  122. this.param.pageNum = 1;
  123. this.list = [];
  124. this.getData();
  125. }
  126. },
  127. //下拉刷新
  128. onPullDownRefresh() {
  129. setTimeout(() => {
  130. this.refresh();
  131. uni.stopPullDownRefresh();
  132. }, 1000);
  133. },
  134. //上拉加载
  135. onReachBottom() {
  136. if (this.loadMore) {
  137. this.param.pageNum++;
  138. this.getData();
  139. }
  140. }
  141. };
  142. </script>
  143. <style lang="scss">
  144. page {
  145. background-color: $pg;
  146. }
  147. .con {
  148. .btn {
  149. float: right;
  150. background-color: $main-color;
  151. color: #000;
  152. height: 20px;
  153. position: relative;
  154. color: white;
  155. padding: 5px 20px;
  156. margin-left: 10px;
  157. }
  158. .icon {
  159. line-height: 30px;
  160. line-height: 20px;
  161. }
  162. }
  163. </style>