mescroll-uni-option.js 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. // 全局配置
  2. // mescroll-body 和 mescroll-uni 通用
  3. import {
  4. initVueI18n
  5. } from '@dcloudio/uni-i18n'
  6. import messages from '@/locale/index'
  7. const { i18n } = initVueI18n(messages)
  8. const GlobalOption = {
  9. down: {
  10. // 其他down的配置参数也可以写,这里只展示了常用的配置:
  11. // 下拉刷新
  12. textInOffset: i18n.message.textInOffset, // 下拉的距离在offset范围内的提示文本
  13. // 释放更新
  14. textOutOffset: i18n.message.textOutOffset, // 下拉的距离大于offset范围的提示文本
  15. // 加载中 ...
  16. textLoading: i18n.message.textLoading, // 加载中的提示文本
  17. offset: 80, // 在列表顶部,下拉大于80px,松手即可触发下拉刷新的回调
  18. native: false // 是否使用系统自带的下拉刷新; 默认false; 仅在mescroll-body生效 (值为true时,还需在pages配置enablePullDownRefresh:true;详请参考mescroll-native的案例)
  19. },
  20. up: {
  21. // 其他up的配置参数也可以写,这里只展示了常用的配置:
  22. // 加载中 ...
  23. textLoading: i18n.message.textLoading, // 加载中的提示文本
  24. // 已经到底啦~
  25. textNoMore: i18n.message.textNoMore, // 没有更多数据的提示文本
  26. offset: 80, // 距底部多远时,触发upCallback
  27. isBounce: false, // 默认禁止橡皮筋的回弹效果, 必读事项: http://www.mescroll.com/qa.html?v=190725#q25
  28. toTop: {
  29. // 回到顶部按钮,需配置src才显示
  30. src: "http://www.mescroll.com/img/mescroll-totop.png?v=1", // 图片路径 (建议放入static目录, 如 /static/img/mescroll-totop.png )
  31. offset: 1000, // 列表滚动多少距离才显示回到顶部按钮,默认1000px
  32. right: 20, // 到右边的距离, 默认20 (支持"20rpx", "20px", "20%"格式的值, 纯数字则默认单位rpx)
  33. bottom: 120, // 到底部的距离, 默认120 (支持"20rpx", "20px", "20%"格式的值, 纯数字则默认单位rpx)
  34. width: 72 // 回到顶部图标的宽度, 默认72 (支持"20rpx", "20px", "20%"格式的值, 纯数字则默认单位rpx)
  35. },
  36. empty: {
  37. use: true, // 是否显示空布局
  38. icon: "http://www.mescroll.com/img/mescroll-empty.png?v=1", // 图标路径 (建议放入static目录, 如 /static/img/mescroll-empty.png )
  39. // ~ 暂无相关数据 ~
  40. tip: i18n.message.noDataTitle // 提示
  41. // tip: '~ 暂无相关数据 ~'
  42. }
  43. }
  44. }
  45. export default GlobalOption