Blame view

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