You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

64 lines
2.5 KiB

3 years ago
  1. // 全局配置
  2. // mescroll-body 和 mescroll-uni 通用
  3. const GlobalOption = {
  4. down: {
  5. // 其他down的配置参数也可以写,这里只展示了常用的配置:
  6. offset: 80, // 在列表顶部,下拉大于80px,松手即可触发下拉刷新的回调
  7. native: false // 是否使用系统自带的下拉刷新; 默认false; 仅在mescroll-body生效 (值为true时,还需在pages配置enablePullDownRefresh:true;详请参考mescroll-native的案例)
  8. },
  9. up: {
  10. // 其他up的配置参数也可以写,这里只展示了常用的配置:
  11. offset: 150, // 距底部多远时,触发upCallback,仅mescroll-uni生效 ( mescroll-body配置的是pages.json的 onReachBottomDistance )
  12. toTop: {
  13. // 回到顶部按钮,需配置src才显示
  14. src: "https://www.mescroll.com/img/mescroll-totop.png", // 图片路径 (建议放入static目录, 如 /static/img/mescroll-totop.png )
  15. offset: 1000, // 列表滚动多少距离才显示回到顶部按钮,默认1000px
  16. right: 20, // 到右边的距离, 默认20 (支持"20rpx", "20px", "20%"格式的值, 纯数字则默认单位rpx)
  17. bottom: 120, // 到底部的距离, 默认120 (支持"20rpx", "20px", "20%"格式的值, 纯数字则默认单位rpx)
  18. width: 72 // 回到顶部图标的宽度, 默认72 (支持"20rpx", "20px", "20%"格式的值, 纯数字则默认单位rpx)
  19. },
  20. empty: {
  21. use: true, // 是否显示空布局
  22. icon: "https://www.mescroll.com/img/mescroll-empty.png" // 图标路径 (建议放入static目录, 如 /static/img/mescroll-empty.png )
  23. }
  24. },
  25. // 国际化配置
  26. i18n: {
  27. // 中文
  28. zh: {
  29. down: {
  30. textInOffset: '下拉刷新', // 下拉的距离在offset范围内的提示文本
  31. textOutOffset: '释放更新', // 下拉的距离大于offset范围的提示文本
  32. textLoading: '加载中 ...', // 加载中的提示文本
  33. textSuccess: '加载成功', // 加载成功的文本
  34. textErr: '加载失败', // 加载失败的文本
  35. },
  36. up: {
  37. textLoading: '加载中 ...', // 加载中的提示文本
  38. textNoMore: '-- END --', // 没有更多数据的提示文本
  39. empty: {
  40. tip: '~ 空空如也 ~' // 空提示
  41. }
  42. }
  43. },
  44. // 英文
  45. en: {
  46. down: {
  47. textInOffset: 'drop down refresh',
  48. textOutOffset: 'release updates',
  49. textLoading: 'loading ...',
  50. textSuccess: 'loaded successfully',
  51. textErr: 'loading failed'
  52. },
  53. up: {
  54. textLoading: 'loading ...',
  55. textNoMore: '-- END --',
  56. empty: {
  57. tip: '~ absolutely empty ~'
  58. }
  59. }
  60. }
  61. }
  62. }
  63. export default GlobalOption