loadmore.js 849 B

123456789101112131415161718192021222324252627282930313233
  1. /*
  2. * @Author : LQ
  3. * @Description :
  4. * @version : 1.0
  5. * @Date : 2021-08-20 16:44:21
  6. * @LastAuthor : LQ
  7. * @lastTime : 2021-08-20 17:15:26
  8. * @FilePath : /u-view2.0/uview-ui/libs/config/props/loadmore.js
  9. */
  10. import { t } from '../../libs/i18n'
  11. export default {
  12. // loadmore 组件
  13. loadmore: {
  14. status: 'loadmore',
  15. bgColor: 'transparent',
  16. icon: true,
  17. fontSize: 14,
  18. iconSize: 17,
  19. color: '#606266',
  20. loadingIcon: 'spinner',
  21. loadmoreText: t("up.loadmoe.loadmore"),
  22. loadingText: t("up.common.loading2") + '...',
  23. nomoreText: t("up.loadmoe.nomore"),
  24. isDot: false,
  25. iconColor: '#b7b7b7',
  26. marginTop: 10,
  27. marginBottom: 10,
  28. height: 'auto',
  29. line: false,
  30. lineColor: '#E6E8EB',
  31. dashed: false,
  32. }
  33. }