123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182 |
- export default {
- props: {
-
- value: {
- type: [String, Number],
- default: uni.$u.props.input.value
- },
-
-
-
-
-
- type: {
- type: String,
- default: uni.$u.props.input.type
- },
-
-
- fixed: {
- type: Boolean,
- default: uni.$u.props.input.fixed
- },
-
- disabled: {
- type: Boolean,
- default: uni.$u.props.input.disabled
- },
-
- disabledColor: {
- type: String,
- default: uni.$u.props.input.disabledColor
- },
-
- clearable: {
- type: Boolean,
- default: uni.$u.props.input.clearable
- },
-
- password: {
- type: Boolean,
- default: uni.$u.props.input.password
- },
-
- maxlength: {
- type: [String, Number],
- default: uni.$u.props.input.maxlength
- },
-
- placeholder: {
- type: String,
- default: uni.$u.props.input.placeholder
- },
-
- placeholderClass: {
- type: String,
- default: uni.$u.props.input.placeholderClass
- },
-
- placeholderStyle: {
- type: [String, Object],
- default: uni.$u.props.input.placeholderStyle
- },
-
- showWordLimit: {
- type: Boolean,
- default: uni.$u.props.input.showWordLimit
- },
-
-
-
- confirmType: {
- type: String,
- default: uni.$u.props.input.confirmType
- },
-
- confirmHold: {
- type: Boolean,
- default: uni.$u.props.input.confirmHold
- },
-
- holdKeyboard: {
- type: Boolean,
- default: uni.$u.props.input.holdKeyboard
- },
-
-
- focus: {
- type: Boolean,
- default: uni.$u.props.input.focus
- },
-
- autoBlur: {
- type: Boolean,
- default: uni.$u.props.input.autoBlur
- },
-
- disableDefaultPadding: {
- type: Boolean,
- default: uni.$u.props.input.disableDefaultPadding
- },
-
- cursor: {
- type: [String, Number],
- default: uni.$u.props.input.cursor
- },
-
- cursorSpacing: {
- type: [String, Number],
- default: uni.$u.props.input.cursorSpacing
- },
-
- selectionStart: {
- type: [String, Number],
- default: uni.$u.props.input.selectionStart
- },
-
- selectionEnd: {
- type: [String, Number],
- default: uni.$u.props.input.selectionEnd
- },
-
- adjustPosition: {
- type: Boolean,
- default: uni.$u.props.input.adjustPosition
- },
-
- inputAlign: {
- type: String,
- default: uni.$u.props.input.inputAlign
- },
-
- fontSize: {
- type: [String, Number],
- default: uni.$u.props.input.fontSize
- },
-
- color: {
- type: String,
- default: uni.$u.props.input.color
- },
-
- prefixIcon: {
- type: String,
- default: uni.$u.props.input.prefixIcon
- },
-
- prefixIconStyle: {
- type: [String, Object],
- default: uni.$u.props.input.prefixIconStyle
- },
-
- suffixIcon: {
- type: String,
- default: uni.$u.props.input.suffixIcon
- },
-
- suffixIconStyle: {
- type: [String, Object],
- default: uni.$u.props.input.suffixIconStyle
- },
-
- border: {
- type: String,
- default: uni.$u.props.input.border
- },
-
- readonly: {
- type: Boolean,
- default: uni.$u.props.input.readonly
- },
-
- shape: {
- type: String,
- default: uni.$u.props.input.shape
- },
-
- formatter: {
- type: [Function, null],
- default: uni.$u.props.input.formatter
- }
- }
- }
|