list.vue 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. <template>
  2. <view>
  3. <view class="search">
  4. <u-search placeholder="搜索商品名称" v-model="param.customerName" 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="show = true">
  15. <text>分类</text>
  16. <text class="icon">&#xe8f2;</text>
  17. </view>
  18. <view class="clear"></view>
  19. </view>
  20. <view class="item" v-for="(item, index) in list" :key="index" @click="detail(item)">
  21. <view class="title">{{item.createName}}</view>
  22. <!-- <image :src="item.goodsImg" mode="aspectFill" class="pic"></image> -->
  23. <image src="../../../static/news.jpg" mode="aspectFill" class="pic"></image>
  24. <view class="con">
  25. <view class="productName omit">{{item.goodsName}}</view>
  26. <view class="desc">{{item.goodsQuantity}}吨</view>
  27. <!-- <view class="price">¥ 5000</view> -->
  28. <view class="btn" v-if="user.userType == 2">立即接单</view>
  29. </view>
  30. <view class="clear"></view>
  31. </view>
  32. </view>
  33. <productType v-model="show"></productType>
  34. </view>
  35. </template>
  36. <script>
  37. export default {
  38. data() {
  39. return {
  40. user: this.getUser(),
  41. show: false,
  42. sort: [{ name: '综合' }, { name: '日期' }, { name: '价格' }],
  43. list: [],
  44. param: { pageNo: 1, pageSize: 10 },
  45. loadMore: true
  46. };
  47. },
  48. onLoad(e) {
  49. this.getData();
  50. },
  51. methods: {
  52. getData() {
  53. this.http.request({
  54. url: '/level-two-server/app/TbGoodsDemand/getAppList',
  55. data: this.param,
  56. loading: 'false',
  57. success: res => {
  58. this.loadMore = parseInt(res.data.pageCount) > this.param.pageNo;
  59. this.list.push(...res.data.data);
  60. }
  61. });
  62. },
  63. detail(item) {
  64. uni.navigateTo({ url: '/pages/market/two/detail?id=' + item.id });
  65. },
  66. //刷新数据
  67. refresh() {
  68. this.loadMore = true;
  69. this.param.pageNum = 1;
  70. this.list = [];
  71. this.getData();
  72. }
  73. },
  74. //下拉刷新
  75. onPullDownRefresh() {
  76. setTimeout(() => {
  77. this.refresh();
  78. uni.stopPullDownRefresh();
  79. }, 1000);
  80. },
  81. //上拉加载
  82. onReachBottom() {
  83. if (this.loadMore) {
  84. this.param.pageNum++;
  85. this.getData();
  86. }
  87. }
  88. };
  89. </script>
  90. <style lang="scss">
  91. page {
  92. background-color: $pg;
  93. }
  94. .search {
  95. padding: 12px 12px 0px 12px;
  96. }
  97. .btn{
  98. width: 120rpx;
  99. height: 40rpx;
  100. background-color: #fff;
  101. color: #000;
  102. border: #B5B5B5 1px solid;
  103. position: relative;
  104. left: 340rpx;
  105. font-size: 14px;
  106. }
  107. </style>