123456789101112131415161718192021222324252627282930313233343536373839 |
- export default {
- props: {
-
- text: {
- type: String,
- default: uni.$u.props.rowNotice.text
- },
-
- icon: {
- type: String,
- default: uni.$u.props.rowNotice.icon
- },
-
- mode: {
- type: String,
- default: uni.$u.props.rowNotice.mode
- },
-
- color: {
- type: String,
- default: uni.$u.props.rowNotice.color
- },
-
- bgColor: {
- type: String,
- default: uni.$u.props.rowNotice.bgColor
- },
-
- fontSize: {
- type: [String, Number],
- default: uni.$u.props.rowNotice.fontSize
- },
-
- speed: {
- type: [String, Number],
- default: uni.$u.props.rowNotice.speed
- }
- }
- }
|