fix(field): fixed clear button incorrectly displaying when value has default value (#5792)

This commit is contained in:
landluck 2024-05-14 20:26:21 +08:00 committed by GitHub
parent 178795253f
commit ff982f6cd0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 40 additions and 10 deletions

View File

@ -7,6 +7,7 @@ interface VantComponentInstance {
detail?: unknown,
options?: WechatMiniprogram.Component.TriggerEventOption
) => void;
setView: (value: Record<string, any>, callback?: () => void) => void;
}
export type VantComponentOptions<

View File

@ -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() {},

View File

@ -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,

View File

@ -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();
},
},
});