myfocus.vue 6.9 KB

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