mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
48 lines
749 B
TypeScript
48 lines
749 B
TypeScript
import { VantComponent } from '../../common/component';
|
|
|
|
VantComponent({
|
|
data: {
|
|
value: '',
|
|
},
|
|
|
|
methods: {
|
|
onChange(e) {
|
|
this.setData({
|
|
value: e.detail,
|
|
});
|
|
},
|
|
|
|
onSearch() {
|
|
if (this.data.value) {
|
|
wx.showToast({
|
|
title: '搜索:' + this.data.value,
|
|
icon: 'none',
|
|
});
|
|
}
|
|
},
|
|
|
|
onClick() {
|
|
if (this.data.value) {
|
|
wx.showToast({
|
|
title: '搜索:' + this.data.value,
|
|
icon: 'none',
|
|
});
|
|
}
|
|
},
|
|
|
|
onCancel() {
|
|
wx.showToast({
|
|
title: '取消',
|
|
icon: 'none',
|
|
});
|
|
},
|
|
|
|
onClear() {
|
|
wx.showToast({
|
|
title: '清空',
|
|
icon: 'none',
|
|
});
|
|
},
|
|
},
|
|
});
|