myfocus.vue 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205
  1. <template>
  2. <view class="pages">
  3. <mescroll-body ref="mescrollRef" @init="mescrollInit" @down="downCallback" @up="upCallback" :down="downOption" :up="upOption">
  4. <view class="product-wrap">
  5. <uni-swipe-action>
  6. <view v-for="(item,index) in productlist" :key="index" class="product-item">
  7. <!-- <uni-swipe-action-item :right-options="swipeOptions" @click="delItem(item.id)" @change="changeSwipe"> -->
  8. <view class="product-item-img-wrap" @click="productclick(item.pmsProduct.id)">
  9. <image class="product-item-img" :src="$getimg+item.pmsProduct.pic|miniImg(50)" mode="aspectFit"></image>
  10. </view>
  11. <view class="product-item-info" @click="productclick(item.pmsProduct.id)">
  12. <view class="product-item-til">{{item.productName}}</view>
  13. <view class="product-item-brand">{{item.productBrand}} <text class="postage" v-if="item.postage">包邮</text></view>
  14. <view class="product-item-addr">{{item.addr}}</view>
  15. <view class="product-item-company">{{item.companyName}}</view>
  16. <view class="product-item-price">
  17. <text class="rmb" v-if="item.pmsProduct.price">¥</text>
  18. <text class="price" :class="!item.price?'noprice':''">{{item.pmsProduct.price||"暂无价格"}}</text>
  19. <text v-if="item.pmsProduct.unit">/ {{item.pmsProduct.unit}}</text>
  20. </view>
  21. </view>
  22. <!-- </uni-swipe-action-item> -->
  23. </view>
  24. </uni-swipe-action>
  25. </view>
  26. </mescroll-body>
  27. </view>
  28. </template>
  29. <script>
  30. // 引入mescroll-mixins.js
  31. import MescrollMixin from "@/components/mescroll-uni/mescroll-mixins.js";
  32. // 引入mescroll-body组件 (如已在main.js注册全局组件,则省略此步骤)
  33. import MescrollBody from "@/components/mescroll-uni/mescroll-body.vue"; // 注意.vue后缀不能省
  34. import uniSwipeAction from '@/components/uni-swipe-action/uni-swipe-action.vue';
  35. import uniSwipeActionItem from '@/components/uni-swipe-action-item/uni-swipe-action-item.vue';
  36. export default {
  37. mixins: [MescrollMixin], // 使用mixin
  38. components: {
  39. MescrollBody,
  40. uniSwipeAction,
  41. uniSwipeActionItem
  42. },
  43. data() {
  44. return {
  45. mescroll: null, // mescroll实例对象 (此行可删,mixins已默认)
  46. // 下拉刷新的配置(可选, 绝大部分情况无需配置)
  47. downOption: {
  48. // ...
  49. },
  50. // 上拉加载的配置(可选, 绝大部分情况无需配置)
  51. upOption: {
  52. page: {
  53. size: 10 // 每页数据的数量,默认10
  54. },
  55. noMoreSize: 5, // 配置列表的总数量要大于等于5条才显示'-- END --'的提示
  56. empty: {
  57. tip: '暂无相关数据'
  58. }
  59. },
  60. params:{
  61. tokenhead:'',
  62. token:'',
  63. },
  64. productlist:[
  65. // {
  66. // img:"http://placekitten.com/160/160",
  67. // title:'红球源500ml*2瓶装传统精炼纯正山茶油',
  68. // brand:'红球源',
  69. // postage:true,
  70. // addr:'贵州大亨油茶科技有限公司',
  71. // price:'258',
  72. // unit:'盒'
  73. // },
  74. // {
  75. // img:"http://placekitten.com/160/160",
  76. // title:'红球源500ml*2瓶装传统精炼纯正山茶油',
  77. // brand:'红球源',
  78. // postage:true,
  79. // addr:'贵州大亨油茶科技有限公司',
  80. // price:'258',
  81. // unit:'盒'
  82. // }
  83. ],
  84. swipeOptions:[
  85. {
  86. text: '删除',
  87. style: {
  88. backgroundColor: '#dd524d'
  89. }
  90. }
  91. ],
  92. }
  93. },
  94. onShow() {
  95. let serf = this;
  96. // //检查登录,获取token
  97. // let loginRes = this.checkLogin('/pages/index/index', '2');
  98. // if(!loginRes){return false;}
  99. // serf.params.token=loginRes[0];
  100. },
  101. onLoad() {
  102. let self = this;
  103. uni.getStorage({
  104. key:'token',
  105. success: function (res) {
  106. self.params.token = res.data;
  107. // console.log(res.data);
  108. }
  109. });
  110. uni.getStorage({
  111. key:'tokenhead',
  112. success: function (res) {
  113. self.params.tokenhead = res.data;
  114. // console.log(res.data);
  115. }
  116. });
  117. },
  118. methods: {
  119. /*mescroll组件初始化的回调,可获取到mescroll对象 (此处可删,mixins已默认)*/
  120. mescrollInit(mescroll) {
  121. this.mescroll = mescroll;
  122. },
  123. /*下拉刷新的回调, 有三种处理方式:*/
  124. downCallback(){
  125. // 第2种: 下拉刷新和上拉加载调同样的接口, 那么不用第1种方式, 直接mescroll.resetUpScroll()即可
  126. this.mescroll.resetUpScroll(); // 重置列表为第一页 (自动执行 page.num=1, 再触发upCallback方法 )
  127. },
  128. /*上拉加载的回调*/
  129. upCallback(page) {
  130. let pageNum = page.num; // 页码, 默认从1开始
  131. let pageSize = page.size; // 页长, 默认每页10条
  132. this.params = Object.assign(this.params,{pageNO:pageNum,pageSize:pageSize});
  133. let thetoken = this.params.tokenhead + this.params.token;
  134. console.log('thetoken',thetoken);
  135. this.$api.http.get(this.config.apiBaseurl+'/pre/other',{params:this.params,header: {Authorization:thetoken}}).then(data => {
  136. console.log('1111111111',data);
  137. if(data.data.code=='1001'){
  138. // uni.redirectTo({
  139. // url:'/pages/login/login?backpage=/pages/index/index'+'&backtype='+2,
  140. // });
  141. };
  142. console.log('data',JSON.parse(JSON.stringify(data)));
  143. // 接口返回的当前页数据列表 (数组)
  144. let curPageData = data.data.data.list;
  145. // console.log('curPageData',curPageData);
  146. // 接口返回的当前页数据长度 (如列表有26个数据,当前页返回8个,则curPageLen=8)
  147. let curPageLen = curPageData.length;
  148. // 接口返回的总页数 (如列表有26个数据,每页10条,共3页; 则totalPage=3)
  149. let totalPage =data.data.data.totalPage;
  150. // 接口返回的总数据量(如列表有26个数据,每页10条,共3页; 则totalSize=26)
  151. let totalSize = data.data.data.total;
  152. // this.productlist = curPageData;
  153. // 接口返回的是否有下一页 (true/false)
  154. // let hasNext = data.xxx;
  155. //设置列表数据
  156. if(page.num == 1) this.productlist = []; //如果是第一页需手动置空列表
  157. this.productlist = this.productlist.concat(curPageData); //追加新数据
  158. // console.log('page.num',page.num);
  159. console.log('this.productlist',JSON.parse(JSON.stringify(this.productlist)));
  160. // 请求成功,隐藏加载状态
  161. //方法一(推荐): 后台接口有返回列表的总页数 totalPage
  162. this.mescroll.endByPage(curPageLen, totalPage);
  163. //方法二(推荐): 后台接口有返回列表的总数据量 totalSize
  164. // this.mescroll.endBySize(curPageLen, totalSize);
  165. // setTimeout(()=>{
  166. // this.mescroll.endSuccess(curPageLen)
  167. // },20)
  168. }).catch(err => {
  169. this.mescroll.endErr()
  170. console.log(err)
  171. });
  172. },
  173. //产品点击
  174. productclick(id){
  175. uni.navigateTo({
  176. url:`/pages/product/product?id=${id}`,
  177. })
  178. },
  179. //滑动change事件
  180. changeSwipe(e){
  181. console.log(e)
  182. },
  183. delItem(id){
  184. console.log(id);
  185. }
  186. }
  187. }
  188. </script>
  189. <style scoped>
  190. /* @import url("./mypublish.css"); */
  191. /* .product-item{display: block;} */
  192. </style>