props.js 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. export default {
  2. props: {
  3. // 显示的内容,字符串
  4. text: {
  5. type: [Array],
  6. default: uni.$u.props.columnNotice.text
  7. },
  8. // 是否显示左侧的音量图标
  9. icon: {
  10. type: String,
  11. default: uni.$u.props.columnNotice.icon
  12. },
  13. // 通告模式,link-显示右箭头,closable-显示右侧关闭图标
  14. mode: {
  15. type: String,
  16. default: uni.$u.props.columnNotice.mode
  17. },
  18. // 文字颜色,各图标也会使用文字颜色
  19. color: {
  20. type: String,
  21. default: uni.$u.props.columnNotice.color
  22. },
  23. // 背景颜色
  24. bgColor: {
  25. type: String,
  26. default: uni.$u.props.columnNotice.bgColor
  27. },
  28. // 字体大小,单位px
  29. fontSize: {
  30. type: [String, Number],
  31. default: uni.$u.props.columnNotice.fontSize
  32. },
  33. // 水平滚动时的滚动速度,即每秒滚动多少px(px),这有利于控制文字无论多少时,都能有一个恒定的速度
  34. speed: {
  35. type: [String, Number],
  36. default: uni.$u.props.columnNotice.speed
  37. },
  38. // direction = row时,是否使用步进形式滚动
  39. step: {
  40. type: Boolean,
  41. default: uni.$u.props.columnNotice.step
  42. },
  43. // 滚动一个周期的时间长,单位ms
  44. duration: {
  45. type: [String, Number],
  46. default: uni.$u.props.columnNotice.duration
  47. },
  48. // 是否禁止用手滑动切换
  49. // 目前HX2.6.11,只支持App 2.5.5+、H5 2.5.5+、支付宝小程序、字节跳动小程序
  50. disableTouch: {
  51. type: Boolean,
  52. default: uni.$u.props.columnNotice.disableTouch
  53. }
  54. }
  55. }