dykj-outsource-12123/uni_modules/uview-plus/components/u-row-notice/props.js

41 lines
1.3 KiB
JavaScript
Raw Normal View History

2024-06-28 14:18:30 +08:00
import defProps from '../../libs/config/props.js';
export default {
props: {
// 显示的内容,字符串
text: {
type: String,
default: () => defProps.rowNotice.text
},
// 是否显示左侧的音量图标
icon: {
type: String,
default: () => defProps.rowNotice.icon
},
// 通告模式link-显示右箭头closable-显示右侧关闭图标
mode: {
type: String,
default: () => defProps.rowNotice.mode
},
// 文字颜色,各图标也会使用文字颜色
color: {
type: String,
default: () => defProps.rowNotice.color
},
// 背景颜色
bgColor: {
type: String,
default: () => defProps.rowNotice.bgColor
},
// 字体大小单位px
fontSize: {
type: [String, Number],
default: () => defProps.rowNotice.fontSize
},
// 水平滚动时的滚动速度即每秒滚动多少px(rpx),这有利于控制文字无论多少时,都能有一个恒定的速度
speed: {
type: [String, Number],
default: () => defProps.rowNotice.speed
}
}
}