mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
fix(stepper): fixed displaying incorrect values when on blur (#5158)
This commit is contained in:
parent
e4ad5cc51a
commit
5f7150d980
@ -35,7 +35,7 @@ VantComponent({
|
|||||||
disableInput: Boolean,
|
disableInput: Boolean,
|
||||||
decimalLength: {
|
decimalLength: {
|
||||||
type: Number,
|
type: Number,
|
||||||
value: (null as unknown) as number,
|
value: null as unknown as number,
|
||||||
observer: 'check',
|
observer: 'check',
|
||||||
},
|
},
|
||||||
min: {
|
min: {
|
||||||
@ -97,14 +97,8 @@ VantComponent({
|
|||||||
},
|
},
|
||||||
|
|
||||||
isDisabled(type: string) {
|
isDisabled(type: string) {
|
||||||
const {
|
const { disabled, disablePlus, disableMinus, currentValue, max, min } =
|
||||||
disabled,
|
this.data;
|
||||||
disablePlus,
|
|
||||||
disableMinus,
|
|
||||||
currentValue,
|
|
||||||
max,
|
|
||||||
min,
|
|
||||||
} = this.data;
|
|
||||||
|
|
||||||
if (type === 'plus') {
|
if (type === 'plus') {
|
||||||
return disabled || disablePlus || currentValue >= max;
|
return disabled || disablePlus || currentValue >= max;
|
||||||
@ -119,6 +113,9 @@ VantComponent({
|
|||||||
|
|
||||||
onBlur(event: WechatMiniprogram.InputBlur) {
|
onBlur(event: WechatMiniprogram.InputBlur) {
|
||||||
const value = this.format(event.detail.value);
|
const value = this.format(event.detail.value);
|
||||||
|
|
||||||
|
this.setData({ currentValue: value });
|
||||||
|
|
||||||
this.$emit('blur', {
|
this.$emit('blur', {
|
||||||
...event.detail,
|
...event.detail,
|
||||||
value,
|
value,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user