12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- export default {
- props: {
-
- text: {
- type: [Array],
- default: uni.$u.props.columnNotice.text
- },
-
- icon: {
- type: String,
- default: uni.$u.props.columnNotice.icon
- },
-
- 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
- },
-
- fontSize: {
- type: [String, Number],
- default: uni.$u.props.columnNotice.fontSize
- },
-
- speed: {
- type: [String, Number],
- default: uni.$u.props.columnNotice.speed
- },
-
- step: {
- type: Boolean,
- default: uni.$u.props.columnNotice.step
- },
-
- duration: {
- type: [String, Number],
- default: uni.$u.props.columnNotice.duration
- },
-
-
- disableTouch: {
- type: Boolean,
- default: uni.$u.props.columnNotice.disableTouch
- }
- }
- }
|