mescrollUni-item.vue 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. <template>
  2. <!--
  3. swiper中的transfrom会使fixed失效,此时用height固定高度;
  4. swiper中无法触发mescroll-mixins.js的onPageScroll和onReachBottom方法,只能用mescroll-uni,不能用mescroll-body
  5. -->
  6. <!-- ref动态生成: 字节跳动小程序编辑器不支持一个页面存在相同的ref (如不考虑字节跳动小程序可固定值为 ref="mescrollRef") -->
  7. <!-- top的高度等于悬浮菜单tabs的高度 -->
  8. <mescroll-uni :ref="'mescrollRef' + i" @init="mescrollInit" :height="height" :down="downOption" @down="downCallback"
  9. :up="upOption" @up="upCallback" @emptyclick="emptyClick">
  10. <!-- 数据列表 -->
  11. <latestGroupBuying :iSshowH="true" :currentId="currentId" :grouponData ="list"
  12. :isSortType="false" :positionInfo="positionInfo" ref="latestGroupBuying"></latestGroupBuying>
  13. </mescroll-uni>
  14. </template>
  15. <script>
  16. import MescrollMixin from "@/uni_modules/mescroll-uni/components/mescroll-uni/mescroll-mixins.js";
  17. import MescrollMoreItemMixin from "@/uni_modules/mescroll-uni/components/mescroll-uni/mixins/mescroll-more-item.js";
  18. import { latestGroupon, historyGroupon, detailGroupon, goodsDetail } from '@/api/groupon.js'
  19. import latestGroupBuying from '../components/latestGroupBuying';
  20. export default {
  21. mixins: [MescrollMixin, MescrollMoreItemMixin], // 注意此处还需使用MescrollMoreItemMixin (必须写在MescrollMixin后面)
  22. components: {
  23. latestGroupBuying
  24. },
  25. data() {
  26. return {
  27. grouponData:[],
  28. downOption: {
  29. auto: false // 不自动加载 (mixin已处理第一个tab触发downCallback)
  30. },
  31. upOption: {
  32. auto: false, // 不自动加载
  33. // page: {
  34. // num: 0, // 当前页码,默认0,回调之前会加1,即callback(page)会从1开始
  35. // size: 10 // 每页数据的数量
  36. // },
  37. noMoreSize: 4, //如果列表已无数据,可设置列表的总数量要大于半页才显示无更多数据;避免列表数据过少(比如只有一条数据),显示无更多数据会不好看; 默认5
  38. empty: {
  39. icon: '/static/images/empty.png',
  40. tip: '暂无内容', // 提示
  41. // btnText: '去看看'
  42. },
  43. textNoMore: '没有更多了'
  44. },
  45. list: [],
  46. }
  47. },
  48. props: {
  49. currentId:{
  50. type:Number,
  51. default(){
  52. return 0
  53. }
  54. },
  55. positionInfo:{
  56. type:Object,
  57. default(){
  58. return {}
  59. }
  60. },
  61. i: Number, // 每个tab页的专属下标 (除了支付宝小程序必须在这里定义, 其他平台都可不用写, 因为已在MescrollMoreItemMixin定义)
  62. index: { // 当前tab的下标 (除了支付宝小程序必须在这里定义, 其他平台都可不用写, 因为已在MescrollMoreItemMixin定义)
  63. type: Number,
  64. default () {
  65. return 0
  66. }
  67. },
  68. tabs: { // 为了请求数据,演示用,可根据自己的项目判断是否要传
  69. type: Array,
  70. default () {
  71. return []
  72. }
  73. },
  74. height: [Number, String], // mescroll的高度
  75. },
  76. watch:{
  77. index(newVal,oldVal){
  78. }
  79. },
  80. methods: {
  81. /*下拉刷新的回调 */
  82. downCallback() {
  83. // 这里加载你想下拉刷新的数据, 比如刷新轮播数据
  84. // loadSwiper();
  85. // 下拉刷新的回调,默认重置上拉加载列表为第一页 (自动执行 page.num=1, 再触发upCallback方法 )
  86. this.mescroll.resetUpScroll()
  87. },
  88. /*上拉加载的回调: 其中page.num:当前页 从1开始, page.size:每页数据条数,默认10 */
  89. upCallback(page) {
  90. //联网加载数据
  91. let httpData = {
  92. current: page.num,
  93. size: 10,
  94. }
  95. if (this.index === 0){
  96. let longitude = uni.getStorageSync('user_longitude');
  97. let latitude = uni.getStorageSync('user_latitude');
  98. latestGroupon({
  99. current: page.num,
  100. size: 10,
  101. longitude: longitude,
  102. latitude: latitude
  103. }).then(res => {
  104. this.mescroll.endSuccess(res.data.records.length,res.data.records.length === 10);
  105. if (page.num === 1) this.list = []; //如果是第一页需手动制空列表
  106. if (res.data.records.length > 0){
  107. this.list = this.list.concat(res.data.records); //追加新数据
  108. }
  109. }).catch((err) => {
  110. //联网失败, 结束加载
  111. this.mescroll.endErr();
  112. })
  113. }
  114. if (this.index === 1){
  115. let longitude = uni.getStorageSync('user_longitude');
  116. let latitude = uni.getStorageSync('user_latitude');
  117. historyGroupon({
  118. current: page.num,
  119. size: 10,
  120. longitude: longitude,
  121. latitude: latitude
  122. }).then(res => {
  123. this.mescroll.endSuccess(res.data.records.length,res.data.records.length === 10);
  124. if (page.num === 1) this.list = []; //如果是第一页需手动制空列表
  125. if (res.data.records.length > 0){
  126. this.list = this.list.concat(res.data.records); //追加新数据
  127. }
  128. }).catch((err) => {
  129. //联网失败, 结束加载
  130. this.mescroll.endErr();
  131. })
  132. }
  133. },
  134. //点击空布局按钮的回调
  135. emptyClick() {
  136. uni.showToast({
  137. title: '点击了按钮,具体逻辑自行实现'
  138. })
  139. },
  140. // 搜索
  141. doSearch() {
  142. this.list = []; // 先清空列表,显示加载进度
  143. this.mescroll.resetUpScroll();
  144. },
  145. }
  146. }
  147. </script>