123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- export default {
- props: {
-
- shape: {
- type: String,
- default: uni.$u.props.search.shape
- },
-
- bgColor: {
- type: String,
- default: uni.$u.props.search.bgColor
- },
-
- placeholder: {
- type: String,
- default: uni.$u.props.search.placeholder
- },
-
- clearabled: {
- type: Boolean,
- default: uni.$u.props.search.clearabled
- },
-
- focus: {
- type: Boolean,
- default: uni.$u.props.search.focus
- },
-
- showAction: {
- type: Boolean,
- default: uni.$u.props.search.showAction
- },
-
- actionStyle: {
- type: Object,
- default: uni.$u.props.search.actionStyle
- },
-
- actionText: {
- type: String,
- default: uni.$u.props.search.actionText
- },
-
- inputAlign: {
- type: String,
- default: uni.$u.props.search.inputAlign
- },
-
- inputStyle: {
- type: Object,
- default: uni.$u.props.search.inputStyle
- },
-
- disabled: {
- type: Boolean,
- default: uni.$u.props.search.disabled
- },
-
- borderColor: {
- type: String,
- default: uni.$u.props.search.borderColor
- },
-
- searchIconColor: {
- type: String,
- default: uni.$u.props.search.searchIconColor
- },
-
- color: {
- type: String,
- default: uni.$u.props.search.color
- },
-
- placeholderColor: {
- type: String,
- default: uni.$u.props.search.placeholderColor
- },
-
- searchIcon: {
- type: String,
- default: uni.$u.props.search.searchIcon
- },
- searchIconSize: {
- type: [Number, String],
- default: uni.$u.props.search.searchIconSize
- },
-
- margin: {
- type: String,
- default: uni.$u.props.search.margin
- },
-
- animation: {
- type: Boolean,
- default: uni.$u.props.search.animation
- },
-
- value: {
- type: String,
- default: uni.$u.props.search.value
- },
-
- maxlength: {
- type: [String, Number],
- default: uni.$u.props.search.maxlength
- },
-
- height: {
- type: [String, Number],
- default: uni.$u.props.search.height
- },
-
- label: {
- type: [String, Number, null],
- default: uni.$u.props.search.label
- }
- }
- }
|