props.js 2.2 KB

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