mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
parent
d64960d442
commit
805d426dca
@ -53,6 +53,21 @@ VantComponent({
|
|||||||
return Promise.all(stack);
|
return Promise.all(stack);
|
||||||
},
|
},
|
||||||
|
|
||||||
|
emit(event: WechatMiniprogram.TouchEvent) {
|
||||||
|
const { type } = event.currentTarget.dataset;
|
||||||
|
if (this.simple) {
|
||||||
|
this.$emit(type, {
|
||||||
|
value: this.getColumnValue(0),
|
||||||
|
index: this.getColumnIndex(0),
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
this.$emit(type, {
|
||||||
|
value: this.getValues(),
|
||||||
|
index: this.getIndexes(),
|
||||||
|
});
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
onChange(event: WechatMiniprogram.CustomEvent) {
|
onChange(event: WechatMiniprogram.CustomEvent) {
|
||||||
if (this.simple) {
|
if (this.simple) {
|
||||||
this.$emit('change', {
|
this.$emit('change', {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user