123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- export default {
- props: {
-
- name: {
- type: [String, Number],
- default: uni.$u.props.numberBox.name
- },
-
- value: {
- type: [String, Number],
- default: uni.$u.props.numberBox.value
- },
-
- min: {
- type: [String, Number],
- default: uni.$u.props.numberBox.min
- },
-
- max: {
- type: [String, Number],
- default: uni.$u.props.numberBox.max
- },
-
- step: {
- type: [String, Number],
- default: uni.$u.props.numberBox.step
- },
-
- integer: {
- type: Boolean,
- default: uni.$u.props.numberBox.integer
- },
-
- disabled: {
- type: Boolean,
- default: uni.$u.props.numberBox.disabled
- },
-
- disabledInput: {
- type: Boolean,
- default: uni.$u.props.numberBox.disabledInput
- },
-
- asyncChange: {
- type: Boolean,
- default: uni.$u.props.numberBox.asyncChange
- },
-
- inputWidth: {
- type: [String, Number],
- default: uni.$u.props.numberBox.inputWidth
- },
-
- showMinus: {
- type: Boolean,
- default: uni.$u.props.numberBox.showMinus
- },
-
- showPlus: {
- type: Boolean,
- default: uni.$u.props.numberBox.showPlus
- },
-
- decimalLength: {
- type: [String, Number, null],
- default: uni.$u.props.numberBox.decimalLength
- },
-
- longPress: {
- type: Boolean,
- default: uni.$u.props.numberBox.longPress
- },
-
- color: {
- type: String,
- default: uni.$u.props.numberBox.color
- },
-
- buttonSize: {
- type: [String, Number],
- default: uni.$u.props.numberBox.buttonSize
- },
-
- bgColor: {
- type: String,
- default: uni.$u.props.numberBox.bgColor
- },
-
- cursorSpacing: {
- type: [String, Number],
- default: uni.$u.props.numberBox.cursorSpacing
- },
-
- disablePlus: {
- type: Boolean,
- default: uni.$u.props.numberBox.disablePlus
- },
-
- disableMinus: {
- type: Boolean,
- default: uni.$u.props.numberBox.disableMinus
- },
-
- iconStyle: {
- type: [Object, String],
- default: uni.$u.props.numberBox.iconStyle
- }
- }
- }
|