mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
108 lines
3.0 KiB
JavaScript
108 lines
3.0 KiB
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
var component_1 = require("../common/component");
|
|
component_1.VantComponent({
|
|
field: true,
|
|
classes: [
|
|
'input-class',
|
|
'plus-class',
|
|
'minus-class'
|
|
],
|
|
props: {
|
|
value: null,
|
|
integer: Boolean,
|
|
disabled: Boolean,
|
|
inputWidth: String,
|
|
asyncChange: Boolean,
|
|
disableInput: Boolean,
|
|
min: {
|
|
type: null,
|
|
value: 1
|
|
},
|
|
max: {
|
|
type: null,
|
|
value: Number.MAX_SAFE_INTEGER
|
|
},
|
|
step: {
|
|
type: null,
|
|
value: 1
|
|
},
|
|
showPlus: {
|
|
type: Boolean,
|
|
value: true
|
|
},
|
|
showMinus: {
|
|
type: Boolean,
|
|
value: true
|
|
}
|
|
},
|
|
computed: {
|
|
minusDisabled: function () {
|
|
return this.data.disabled || this.data.value <= this.data.min;
|
|
},
|
|
plusDisabled: function () {
|
|
return this.data.disabled || this.data.value >= this.data.max;
|
|
}
|
|
},
|
|
watch: {
|
|
value: function (value) {
|
|
if (value === '') {
|
|
return;
|
|
}
|
|
var newValue = this.range(value);
|
|
if (typeof newValue === 'number' && +this.data.value !== newValue) {
|
|
this.set({ value: newValue });
|
|
}
|
|
}
|
|
},
|
|
data: {
|
|
focus: false
|
|
},
|
|
created: function () {
|
|
this.set({
|
|
value: this.range(this.data.value)
|
|
});
|
|
},
|
|
methods: {
|
|
onFocus: function (event) {
|
|
this.$emit('focus', event.detail);
|
|
},
|
|
onBlur: function (event) {
|
|
var value = this.range(this.data.value);
|
|
this.triggerInput(value);
|
|
this.$emit('blur', event.detail);
|
|
},
|
|
// limit value range
|
|
range: function (value) {
|
|
value = String(value).replace(/[^0-9.-]/g, '');
|
|
return Math.max(Math.min(this.data.max, value), this.data.min);
|
|
},
|
|
onInput: function (event) {
|
|
var _a = (event.detail || {}).value, value = _a === void 0 ? '' : _a;
|
|
this.triggerInput(value);
|
|
},
|
|
onChange: function (type) {
|
|
if (this.data[type + "Disabled"]) {
|
|
this.$emit('overlimit', type);
|
|
return;
|
|
}
|
|
var diff = type === 'minus' ? -this.data.step : +this.data.step;
|
|
var value = Math.round((+this.data.value + diff) * 100) / 100;
|
|
this.triggerInput(this.range(value));
|
|
this.$emit(type);
|
|
},
|
|
onMinus: function () {
|
|
this.onChange('minus');
|
|
},
|
|
onPlus: function () {
|
|
this.onChange('plus');
|
|
},
|
|
triggerInput: function (value) {
|
|
this.set({
|
|
value: this.data.asyncChange ? this.data.value : value
|
|
});
|
|
this.$emit('change', value);
|
|
}
|
|
}
|
|
});
|