mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 10:22:44 +08:00
fix(field): fixed clear button incorrectly displaying when value has default value (#5792)
This commit is contained in:
parent
178795253f
commit
ff982f6cd0
@ -7,6 +7,7 @@ interface VantComponentInstance {
|
||||
detail?: unknown,
|
||||
options?: WechatMiniprogram.Component.TriggerEventOption
|
||||
) => void;
|
||||
setView: (value: Record<string, any>, callback?: () => void) => void;
|
||||
}
|
||||
|
||||
export type VantComponentOptions<
|
||||
|
@ -66,6 +66,20 @@ VantComponent({
|
||||
showClear: false,
|
||||
},
|
||||
|
||||
watch: {
|
||||
value(this: WechatMiniprogram.Component.TrivialInstance, value) {
|
||||
if (value !== this.value) {
|
||||
this.setData({ innerValue: value });
|
||||
this.value = value;
|
||||
|
||||
this.setShowClear();
|
||||
}
|
||||
},
|
||||
clearTrigger() {
|
||||
this.setShowClear();
|
||||
},
|
||||
},
|
||||
|
||||
created() {
|
||||
this.value = this.data.value;
|
||||
this.setData({ innerValue: this.value });
|
||||
@ -204,7 +218,7 @@ VantComponent({
|
||||
showClear = hasValue && trigger;
|
||||
}
|
||||
|
||||
this.setData({ showClear });
|
||||
this.setView({ showClear });
|
||||
},
|
||||
|
||||
noop() {},
|
||||
|
@ -1,13 +1,5 @@
|
||||
export const commonProps: WechatMiniprogram.Component.PropertyOption = {
|
||||
value: {
|
||||
type: String,
|
||||
observer(this: WechatMiniprogram.Component.TrivialInstance, value) {
|
||||
if (value !== this.value) {
|
||||
this.setData({ innerValue: value });
|
||||
this.value = value;
|
||||
}
|
||||
},
|
||||
},
|
||||
value: String,
|
||||
placeholder: String,
|
||||
placeholderStyle: String,
|
||||
placeholderClass: String,
|
||||
|
@ -13,5 +13,28 @@ export const basic = Behavior({
|
||||
|
||||
return new Promise((resolve) => wx.nextTick(resolve));
|
||||
},
|
||||
|
||||
// high performance setData
|
||||
setView(
|
||||
this: WechatMiniprogram.Component.TrivialInstance,
|
||||
data: Record<string, any>,
|
||||
callback?: () => void
|
||||
) {
|
||||
const target: Record<string, any> = {};
|
||||
let hasChange = false;
|
||||
|
||||
Object.keys(data).forEach((key) => {
|
||||
if (data[key] !== this.data[key]) {
|
||||
target[key] = data[key];
|
||||
hasChange = true;
|
||||
}
|
||||
});
|
||||
|
||||
if (hasChange) {
|
||||
return this.setData(target, callback);
|
||||
}
|
||||
|
||||
return callback && callback();
|
||||
},
|
||||
},
|
||||
});
|
||||
|
Loading…
x
Reference in New Issue
Block a user