subject.vue 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  1. <template>
  2. <view class="pages">
  3. <!-- <view class="search-wrap nomal-bottom">
  4. <view class="search">
  5. <view class="searchTxt">
  6. <uni-search-bar :placeholder="searchtxt" @confirm="search" @input="search" ></uni-search-bar>
  7. </view>
  8. </view>
  9. </view> -->
  10. <!-- 搜索 结束 -->
  11. <mescroll-body class="wrap" ref="mescrollRef" @init="mescrollInit" @down="downCallback" @up="upCallback" :down="downOption" :up="upOption">
  12. <view class="results write-radius">
  13. <view v-for="(item,index) in dataList" :key="index" @click="productdetails(item.id)" class="results-item">
  14. <view class="results-item-img-wrap"><image :src="$getimg+item.pic|miniImg(50)+'/thumbnail/358x358'" mode="scaleToFill" class="results-item-img cover-img"></image></view>
  15. <view class="results-item-info">
  16. <view class="results-item-info-til">{{item.name}}</view>
  17. <view class="results-item-info-brand">{{item.brandName}}</view>
  18. <!-- <view class="results-item-info-addr">{{item.placeOfProduction}}</view> -->
  19. <view class="results-item-info-label">
  20. <text v-if="item.postage" class="postage">包邮</text>
  21. </view>
  22. <view class="item-spec f-ellipsis">
  23. <text>规格:</text><text>{{item.spec}}</text>
  24. </view>
  25. <view class="results-item-info-company f-ellipsis">{{item.compName}}</view>
  26. <view class="results-item-info-price">
  27. <text class="rmb">¥</text>
  28. <text class="price">{{item.price}}</text>
  29. <text class="unit">/{{item.unit}}</text>
  30. <!-- <text class="minsell">4000斤起售</text> -->
  31. </view>
  32. </view>
  33. </view>
  34. </view>
  35. </mescroll-body>
  36. </view>
  37. </template>
  38. <script>
  39. // 引入mescroll-mixins.js
  40. import MescrollMixin from "@/components/mescroll-uni/mescroll-mixins.js";
  41. // 引入mescroll-body组件 (如已在main.js注册全局组件,则省略此步骤)
  42. import MescrollBody from "@/components/mescroll-uni/mescroll-body.vue"; // 注意.vue后缀不能省
  43. import uniSearchBar from '@/components/uni-search-bar/uni-search-bar.vue'
  44. export default {
  45. mixins: [MescrollMixin], // 使用mixin
  46. components: {
  47. MescrollBody,
  48. uniSearchBar,
  49. },
  50. data() {
  51. return {
  52. title:'',
  53. searchtxt:'产品名称',
  54. params:{
  55. token:'',
  56. keyword:'',
  57. subjectId:'',
  58. },
  59. mescroll: null, // mescroll实例对象 (此行可删,mixins已默认)
  60. // 下拉刷新的配置(可选, 绝大部分情况无需配置)
  61. downOption: {
  62. // ...
  63. },
  64. // 上拉加载的配置(可选, 绝大部分情况无需配置)
  65. upOption: {
  66. page: {
  67. size: 10 // 每页数据的数量,默认10
  68. },
  69. noMoreSize: 5, // 配置列表的总数量要大于等于5条才显示'-- END --'的提示
  70. empty: {
  71. tip: '暂无相关数据'
  72. }
  73. },
  74. // 列表数据
  75. dataList:[],
  76. }
  77. },
  78. onShow() {
  79. let serf = this;
  80. //检查登录,获取token
  81. // let loginRes = this.checkLogin('/pages/index/index', '2');
  82. // if(!loginRes){return false;}
  83. // serf.params.token=loginRes[0];
  84. },
  85. onReady() {
  86. uni.setNavigationBarTitle({
  87. title: this.title
  88. });
  89. },
  90. onLoad(option) {
  91. console.log('option',option);
  92. if(option.subjectId){
  93. this.params.subjectId = option.subjectId;
  94. this.searchtxt = option.name;
  95. }
  96. if(option.title){
  97. this.title = option.title
  98. }
  99. // if(option.keyword){
  100. // this.params.keyword = option.keyword;
  101. // this.searchtxt = option.keyword;
  102. // }
  103. // console.log(this.params.keyword);
  104. },
  105. methods: {
  106. //搜索
  107. search(e) {
  108. console.log(e);
  109. this.params.keyword = e.value;
  110. this.params.subjectId = '';
  111. this.searchtxt = e.value;
  112. this.downCallback();
  113. // this.poorList = [];
  114. // this.params.farmerName = e.value;
  115. // this.pagination = Object.assign(this.pagination,{"farmerName":e.value});
  116. // this.pagination.pageNo = 1;
  117. // this.getPoorList(this.pagination)
  118. },
  119. /*mescroll组件初始化的回调,可获取到mescroll对象 (此处可删,mixins已默认)*/
  120. mescrollInit(mescroll) {
  121. this.mescroll = mescroll;
  122. },
  123. downCallback(){
  124. this.mescroll.resetUpScroll(); // 重置列表为第一页 (自动执行 page.num=1, 再触发upCallback方法 )
  125. },
  126. /*上拉加载的回调*/
  127. upCallback(page) {
  128. let pageNum = page.num; // 页码, 默认从1开始
  129. let pageSize = page.size; // 页长, 默认每页10条
  130. this.params = Object.assign(this.params,{pageNum:pageNum,pageSize:pageSize});
  131. this.$api.http.get(this.config.apiBaseurl+'/home/subjectProductList',{params: this.params}).then(data => {
  132. if(data.data.code=='1001'){
  133. // uni.redirectTo({
  134. // url:'/pages/login/login?backpage=/pages/index/index'+'&backtype='+2,
  135. // });
  136. };
  137. console.log('data',JSON.parse(JSON.stringify(data)));
  138. // 接口返回的当前页数据列表 (数组)
  139. let curPageData = data.data.data;
  140. console.log('curPageData',JSON.parse(JSON.stringify(curPageData)));
  141. // 接口返回的当前页数据长度 (如列表有26个数据,当前页返回8个,则curPageLen=8)
  142. let curPageLen = curPageData.length;
  143. // 接口返回的总页数 (如列表有26个数据,每页10条,共3页; 则totalPage=3)
  144. let totalPage = data.data.data.totalPage;
  145. // 接口返回的总数据量(如列表有26个数据,每页10条,共3页; 则totalSize=26)
  146. let totalSize = data.data.data.total;
  147. // 接口返回的是否有下一页 (true/false)
  148. // let hasNext = data.xxx;
  149. console.log('totalPage',totalPage,'curPageLen',curPageLen);
  150. //设置列表数据
  151. if(page.num == 1) this.dataList = []; //如果是第一页需手动置空列表
  152. this.dataList = this.dataList.concat(curPageData); //追加新数据
  153. // 请求成功,隐藏加载状态
  154. //方法一(推荐): 后台接口有返回列表的总页数 totalPage
  155. this.mescroll.endByPage(curPageLen, totalPage);
  156. //方法二(推荐): 后台接口有返回列表的总数据量 totalSize
  157. // this.mescroll.endBySize(curPageLen, totalSize);
  158. // setTimeout(()=>{
  159. // this.mescroll.endSuccess(curPageLen)
  160. // },20)
  161. }).catch(err => {
  162. this.mescroll.endErr()
  163. console.log(err)
  164. });
  165. },
  166. //跳转详情
  167. productdetails(id){
  168. uni.navigateTo({
  169. url:`/pages/product/product?id=${id}`
  170. })
  171. },
  172. }
  173. }
  174. </script>
  175. <style scoped>
  176. @import url("./subject.css");
  177. </style>