list.vue 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  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">
  20. <view class="title" @click="detail(item)">{{ item.createName }}</view>
  21. <image @click="detail(item)" src="../../../static/news.jpg" mode="aspectFill" class="pic"></image>
  22. <view class="con">
  23. <view class="productName omit" @click="detail(item)">{{ item.goodsName }}</view>
  24. <view class="desc" @click="detail(item)">{{ item.goodsQuantity }}吨</view>
  25. <view class="btn" v-if="user.userType == 2" @click="confirm(item)">立即接单</view>
  26. </view>
  27. </view>
  28. <view class="loading" v-if="loadMore"><u-loadmore :status="loadMore ? 'loading' : 'nomore'" /></view>
  29. <u-empty v-if="!loadMore && list.length == 0"></u-empty>
  30. </view>
  31. <productType v-model="show"></productType>
  32. </view>
  33. </template>
  34. <script>
  35. export default {
  36. data() {
  37. return {
  38. user: this.getUser(),
  39. show: false,
  40. sort: [{ name: '综合' }, { name: '日期' }, { name: '价格' }],
  41. list: [],
  42. param: { pageNo: 1, pageSize: 10 },
  43. loadMore: true
  44. };
  45. },
  46. onLoad(e) {
  47. this.getData();
  48. //选择商品分类
  49. uni.$on('productType', res => {
  50. this.param.goodsType = res.name;
  51. this.param.current = res.current;
  52. this.param.now = res.now;
  53. this.refresh();
  54. });
  55. },
  56. methods: {
  57. select(item, index) {
  58. this.sort.forEach(it => (it.check = false));
  59. item.check = true;
  60. if (index > 0) {
  61. this.orderBy = this.orderBy == 'desc' ? 'asc' : 'desc';
  62. item.orderBy = this.orderBy;
  63. }
  64. this.param.orderBy = item.orderBy;
  65. this.param.sortType = item.sortType;
  66. this.refresh();
  67. },
  68. getData() {
  69. this.http.request({
  70. url: '/level-two-server/app/TbGoodsDemand/getList',
  71. data: this.param,
  72. loading: 'false',
  73. success: res => {
  74. this.loadMore = parseInt(res.data.pageCount) > this.param.pageNo;
  75. this.list.push(...res.data.data);
  76. }
  77. });
  78. },
  79. //选择分类
  80. go() {
  81. uni.navigateTo({ url: '/pages/market/productType?current=' + this.param.current + '&now=' + this.param.now });
  82. },
  83. detail(item) {
  84. uni.navigateTo({ url: '/pages/market/two/detail?id=' + item.id });
  85. },
  86. confirm(item) {
  87. uni.navigateTo({ url: '/pages/market/two/leader/confirm?item=' + JSON.stringify(item) });
  88. },
  89. //刷新数据
  90. refresh() {
  91. this.loadMore = true;
  92. this.param.pageNum = 1;
  93. this.list = [];
  94. this.getData();
  95. }
  96. },
  97. //下拉刷新
  98. onPullDownRefresh() {
  99. setTimeout(() => {
  100. this.refresh();
  101. uni.stopPullDownRefresh();
  102. }, 1000);
  103. },
  104. //上拉加载
  105. onReachBottom() {
  106. if (this.loadMore) {
  107. this.param.pageNum++;
  108. this.getData();
  109. }
  110. }
  111. };
  112. </script>
  113. <style lang="scss">
  114. page {
  115. background-color: $pg;
  116. }
  117. .btn {
  118. width: 120rpx;
  119. height: 40rpx;
  120. background-color: #fff;
  121. color: #000;
  122. border: #b5b5b5 1px solid;
  123. position: relative;
  124. left: 350rpx;
  125. font-size: 14px;
  126. }
  127. </style>