list.vue 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207
  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.leaderName }}</view>
  21. <view class="check" @click.stop="selected(item)" v-if="user.userType == 3">
  22. <text class="check icon" v-if="item.check" style="color: #4581fb">&#xe631;</text>
  23. <text class="check icon" v-else>&#xe60c;</text>
  24. </view>
  25. <view class="con">
  26. <view class="productName omit">{{ item.goodsName }}</view>
  27. <view class="desc">车牌号 {{ item.veNo }}</view>
  28. <view class="desc omit">
  29. <text>重量 {{ item.totalWeight }}{{ item.goodsUnit }}</text>
  30. <text>{{ item.tradeAreaName }}</text>
  31. </view>
  32. <view class="price">上架金额 ¥ {{ item.resalePrice }}</view>
  33. <view class="op">
  34. <view class="date">{{ item.createTime }}</view>
  35. <template>
  36. <view class="icon btn" v-if="user.userType == 3" @click.stop="addCar(item)">&#xe600;</view>
  37. <view class="btn" v-if="user.userType == 3" @click.stop="buy(item)">购买</view>
  38. </template>
  39. </view>
  40. </view>
  41. </view>
  42. <view class="loading" v-if="loadMore"><u-loadmore :status="loadMore ? 'loading' : 'nomore'" /></view>
  43. <u-empty v-if="!loadMore && list.length == 0"></u-empty>
  44. </view>
  45. <productType v-model="show"></productType>
  46. <button class="addBtn" @click="goCar()" v-if="user.userType == 3">
  47. <text class="icon">&#xe600;</text>
  48. <view class="bag animated" :class="{ bounce: add }" v-if="cars > 0">{{ cars }}</view>
  49. </button>
  50. <view class="mfooter" v-if="selects.length > 0&&user.userType == 3">
  51. <view class="flex">
  52. <view class="f">
  53. <button class="btn" @click="buy({})">立即购买({{ selects.length }})</button>
  54. </view>
  55. </view>
  56. </view>
  57. </view>
  58. </template>
  59. <script>
  60. export default {
  61. data() {
  62. return {
  63. user: this.getUser(),
  64. show: false,
  65. isAsc: 'desc',
  66. cars: 0,
  67. add: false,
  68. sort: [
  69. { name: '综合', sortName: 'id', isAsc: 'desc', check: false },
  70. { name: '日期', sortName: 'create_time', isAsc: 'desc', check: false },
  71. { name: '金额', sortName: 'resale_price', isAsc: 'desc', check: false }
  72. ],
  73. list: [],
  74. param: { pageNo: 1, pageSize: 10 },
  75. loadMore: true,
  76. selects: []
  77. };
  78. },
  79. onLoad(e) {
  80. this.getData();
  81. //选择商品分类
  82. uni.$on('productType', res => {
  83. this.param.typeCode = res.no;
  84. this.param.goodsType = res.name;
  85. this.refresh();
  86. });
  87. },
  88. methods: {
  89. select(item, index) {
  90. this.sort.forEach(it => (it.check = false));
  91. item.check = true;
  92. if (index > 0) {
  93. this.isAsc = this.isAsc == 'desc' ? 'asc' : 'desc';
  94. item.isAsc = this.isAsc;
  95. }
  96. this.param.orderBy = item.sortName + ' ' + this.isAsc;
  97. this.refresh();
  98. },
  99. getData() {
  100. this.http.request({
  101. url: '/level-two-server/app/TbOrders/getLevelTwoList',
  102. data: this.param,
  103. loading: 'false',
  104. success: res => {
  105. this.loadMore = parseInt(res.data.pageCount) > this.param.pageNo;
  106. this.list.push(...res.data.data);
  107. }
  108. });
  109. },
  110. //多选购买
  111. selected(item) {
  112. item.check = !item.check;
  113. this.$forceUpdate();
  114. this.selects = this.list.filter(item => item.check);
  115. },
  116. //选择分类
  117. go() {
  118. uni.navigateTo({ url: '/pages/market/productType?current=' + this.param.current + '&now=' + this.param.now });
  119. },
  120. detail(item) {
  121. uni.navigateTo({ url: '/pages/market/two/detail?orderId=' + item.id });
  122. },
  123. addCar(item) {
  124. this.add = true;
  125. this.http.request({
  126. url: '/level-two-server/app/TbOrdersCart/add',
  127. method: 'POST',
  128. data: { orderId: item.id },
  129. success: res => {
  130. this.cars++;
  131. setTimeout(() => {
  132. this.add = false;
  133. }, 500);
  134. uni.showToast({ title: '添加成功' });
  135. }
  136. });
  137. },
  138. goCar() {
  139. uni.navigateTo({ url: '/pages/market/two/purchaser/order/cart' });
  140. },
  141. buy(item) {
  142. if (item.id) {
  143. uni.navigateTo({
  144. url: '/pages/market/two/purchaser/buy/buy?orderId=' + item.id
  145. });
  146. } else {
  147. uni.navigateTo({
  148. url: '/pages/market/two/purchaser/buy/buy?orderId=' + this.selects.map(item => item.id)
  149. });
  150. }
  151. },
  152. //刷新数据
  153. refresh() {
  154. this.loadMore = true;
  155. this.param.pageNum = 1;
  156. this.list = [];
  157. this.selects=[];
  158. this.getData();
  159. }
  160. },
  161. //下拉刷新
  162. onPullDownRefresh() {
  163. setTimeout(() => {
  164. this.refresh();
  165. uni.stopPullDownRefresh();
  166. }, 1000);
  167. },
  168. //上拉加载
  169. onReachBottom() {
  170. if (this.loadMore) {
  171. this.param.pageNum++;
  172. this.getData();
  173. }
  174. }
  175. };
  176. </script>
  177. <style lang="scss">
  178. page {
  179. background-color: $pg;
  180. }
  181. .goodsList .item .con {
  182. width: 98%;
  183. }
  184. .con {
  185. .btn {
  186. float: right;
  187. background-color: $main-color;
  188. height: 20px;
  189. position: relative;
  190. color: white;
  191. padding: 5px 20px;
  192. margin-left: 10px;
  193. }
  194. .icon {
  195. line-height: 20px;
  196. }
  197. }
  198. .mfooter {
  199. background-color: #ffffff00;
  200. border: 0px;
  201. .btn{
  202. background-color: #F44336;
  203. }
  204. }
  205. </style>