list.vue 5.3 KB

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