You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
1.8 KiB
55 lines
1.8 KiB
export default { |
|
props: { |
|
// 显示的内容,字符串 |
|
text: { |
|
type: [Array], |
|
default: uni.$u.props.columnNotice.text |
|
}, |
|
// 是否显示左侧的音量图标 |
|
icon: { |
|
type: String, |
|
default: uni.$u.props.columnNotice.icon |
|
}, |
|
// 通告模式,link-显示右箭头,closable-显示右侧关闭图标 |
|
mode: { |
|
type: String, |
|
default: uni.$u.props.columnNotice.mode |
|
}, |
|
// 文字颜色,各图标也会使用文字颜色 |
|
color: { |
|
type: String, |
|
default: uni.$u.props.columnNotice.color |
|
}, |
|
// 背景颜色 |
|
bgColor: { |
|
type: String, |
|
default: uni.$u.props.columnNotice.bgColor |
|
}, |
|
// 字体大小,单位px |
|
fontSize: { |
|
type: [String, Number], |
|
default: uni.$u.props.columnNotice.fontSize |
|
}, |
|
// 水平滚动时的滚动速度,即每秒滚动多少px(px),这有利于控制文字无论多少时,都能有一个恒定的速度 |
|
speed: { |
|
type: [String, Number], |
|
default: uni.$u.props.columnNotice.speed |
|
}, |
|
// direction = row时,是否使用步进形式滚动 |
|
step: { |
|
type: Boolean, |
|
default: uni.$u.props.columnNotice.step |
|
}, |
|
// 滚动一个周期的时间长,单位ms |
|
duration: { |
|
type: [String, Number], |
|
default: uni.$u.props.columnNotice.duration |
|
}, |
|
// 是否禁止用手滑动切换 |
|
// 目前HX2.6.11,只支持App 2.5.5+、H5 2.5.5+、支付宝小程序、字节跳动小程序 |
|
disableTouch: { |
|
type: Boolean, |
|
default: uni.$u.props.columnNotice.disableTouch |
|
} |
|
} |
|
}
|
|
|