u-notice-bar.vue 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. <template>
  2. <view
  3. class="u-notice-bar"
  4. v-if="show"
  5. :style="[{
  6. backgroundColor: bgColor
  7. }, $u.addStyle(customStyle)]"
  8. >
  9. <template v-if="direction === 'column' || (direction === 'row' && step)">
  10. <u-column-notice
  11. :color="color"
  12. :bgColor="bgColor"
  13. :text="text"
  14. :mode="mode"
  15. :step="step"
  16. :icon="icon"
  17. :disable-touch="disableTouch"
  18. :fontSize="fontSize"
  19. :duration="duration"
  20. @close="close"
  21. @click="click"
  22. ></u-column-notice>
  23. </template>
  24. <template v-else>
  25. <u-row-notice
  26. :color="color"
  27. :bgColor="bgColor"
  28. :text="text"
  29. :mode="mode"
  30. :fontSize="fontSize"
  31. :speed="speed"
  32. :url="url"
  33. :linkType="linkType"
  34. :icon="icon"
  35. @close="close"
  36. @click="click"
  37. ></u-row-notice>
  38. </template>
  39. </view>
  40. </template>
  41. <script>
  42. import props from './props.js';
  43. import mpMixin from '../../libs/mixin/mpMixin.js';
  44. import mixin from '../../libs/mixin/mixin.js';
  45. /**
  46. * noticeBar 滚动通知
  47. * @description 该组件用于滚动通告场景,有多种模式可供选择
  48. * @tutorial https://ijry.github.io/uview-plus/components/noticeBar.html
  49. * @property {Array | String} text 显示的内容,数组
  50. * @property {String} direction 通告滚动模式,row-横向滚动,column-竖向滚动 ( 默认 'row' )
  51. * @property {Boolean} step direction = row时,是否使用步进形式滚动 ( 默认 false )
  52. * @property {String} icon 是否显示左侧的音量图标 ( 默认 'volume' )
  53. * @property {String} mode 通告模式,link-显示右箭头,closable-显示右侧关闭图标
  54. * @property {String} color 文字颜色,各图标也会使用文字颜色 ( 默认 '#f9ae3d' )
  55. * @property {String} bgColor 背景颜色 ( 默认 '#fdf6ec' )
  56. * @property {String | Number} speed 水平滚动时的滚动速度,即每秒滚动多少px(px),这有利于控制文字无论多少时,都能有一个恒定的速度 ( 默认 80 )
  57. * @property {String | Number} fontSize 字体大小 ( 默认 14 )
  58. * @property {String | Number} duration 滚动一个周期的时间长,单位ms ( 默认 2000 )
  59. * @property {Boolean} disableTouch 是否禁止用手滑动切换 目前HX2.6.11,只支持App 2.5.5+、H5 2.5.5+、支付宝小程序、字节跳动小程序(默认34) ( 默认 true )
  60. * @property {String} url 跳转的页面路径
  61. * @property {String} linkType 页面跳转的类型 ( 默认 navigateTo )
  62. * @property {Object} customStyle 定义需要用到的外部样式
  63. *
  64. * @event {Function} click 点击通告文字触发
  65. * @event {Function} close 点击右侧关闭图标触发
  66. * @example <u-notice-bar :more-icon="true" :list="list"></u-notice-bar>
  67. */
  68. export default {
  69. name: "u-notice-bar",
  70. mixins: [mpMixin, mixin,props],
  71. data() {
  72. return {
  73. show: true
  74. }
  75. },
  76. emits: ["click", "close"],
  77. methods: {
  78. // 点击通告栏
  79. click(index) {
  80. this.$emit('click', index)
  81. if (this.url && this.linkType) {
  82. // 此方法写在mixin中,另外跳转的url和linkType参数也在mixin的props中
  83. this.openPage()
  84. }
  85. },
  86. // 点击关闭按钮
  87. close() {
  88. this.show = false
  89. this.$emit('close')
  90. }
  91. }
  92. };
  93. </script>
  94. <style lang="scss" scoped>
  95. @import "../../libs/css/components.scss";
  96. .u-notice-bar {
  97. overflow: hidden;
  98. padding: 9px 12px;
  99. flex: 1;
  100. }
  101. </style>