props.js 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. export default {
  2. props: {
  3. // 提示内容
  4. loadingText: {
  5. type: [String, Number],
  6. default: uni.$u.props.loadingPage.loadingText
  7. },
  8. // 文字上方用于替换loading动画的图片
  9. image: {
  10. type: String,
  11. default: uni.$u.props.loadingPage.image
  12. },
  13. // 加载动画的模式,circle-圆形,spinner-花朵形,semicircle-半圆形
  14. loadingMode: {
  15. type: String,
  16. default: uni.$u.props.loadingPage.loadingMode
  17. },
  18. // 是否加载中
  19. loading: {
  20. type: Boolean,
  21. default: uni.$u.props.loadingPage.loading
  22. },
  23. // 背景色
  24. bgColor: {
  25. type: String,
  26. default: uni.$u.props.loadingPage.bgColor
  27. },
  28. // 文字颜色
  29. color: {
  30. type: String,
  31. default: uni.$u.props.loadingPage.color
  32. },
  33. // 文字大小
  34. fontSize: {
  35. type: [String, Number],
  36. default: uni.$u.props.loadingPage.fontSize
  37. },
  38. // 图标大小
  39. iconSize: {
  40. type: [String, Number],
  41. default: uni.$u.props.loadingPage.fontSize
  42. },
  43. // 加载中图标的颜色,只能rgb或者十六进制颜色值
  44. loadingColor: {
  45. type: String,
  46. default: uni.$u.props.loadingPage.loadingColor
  47. }
  48. }
  49. }