mescroll-more-item.js 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. /**
  2. * mescroll-more-item的mixins, 仅在多个 mescroll-body 写在子组件时使用 (参考 mescroll-more 案例)
  3. */
  4. const MescrollMoreItemMixin = {
  5. // 支付宝小程序不支持props的mixin,需写在具体的页面中
  6. // #ifndef MP-ALIPAY || MP-DINGTALK
  7. props:{
  8. i: Number, // 每个tab页的专属下标
  9. index: { // 当前tab的下标
  10. type: Number,
  11. default(){
  12. return 0
  13. }
  14. }
  15. },
  16. // #endif
  17. data() {
  18. return {
  19. downOption:{
  20. auto:false // 不自动加载
  21. },
  22. upOption:{
  23. auto:false // 不自动加载
  24. },
  25. isInit: false // 当前tab是否已初始化
  26. }
  27. },
  28. watch:{
  29. // 监听下标的变化
  30. index(val){
  31. if (this.i === val && !this.isInit) {
  32. this.isInit = true; // 标记为true
  33. this.mescroll && this.mescroll.triggerDownScroll();
  34. }
  35. }
  36. },
  37. methods: {
  38. // 以ref的方式初始化mescroll对象 (兼容字节跳动小程序)
  39. mescrollInitByRef() {
  40. if(!this.mescroll || !this.mescroll.resetUpScroll){
  41. // 字节跳动小程序编辑器不支持一个页面存在相同的ref, 多mescroll的ref需动态生成, 格式为'mescrollRef下标'
  42. let mescrollRef = this.$refs.mescrollRef || this.$refs['mescrollRef'+this.i];
  43. if(mescrollRef) this.mescroll = mescrollRef.mescroll
  44. }
  45. },
  46. // mescroll组件初始化的回调,可获取到mescroll对象 (覆盖mescroll-mixins.js的mescrollInit, 为了标记isInit)
  47. mescrollInit(mescroll) {
  48. this.mescroll = mescroll;
  49. this.mescrollInitByRef && this.mescrollInitByRef(); // 兼容字节跳动小程序
  50. // 自动加载当前tab的数据
  51. if(this.i === this.index){
  52. this.isInit = true; // 标记为true
  53. this.mescroll.triggerDownScroll();
  54. }
  55. },
  56. }
  57. }
  58. export default MescrollMoreItemMixin;