mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
28 lines
351 B
JavaScript
28 lines
351 B
JavaScript
Page({
|
|
data: {
|
|
value: ''
|
|
},
|
|
|
|
onChange(e) {
|
|
this.setData({
|
|
value: e.detail
|
|
});
|
|
},
|
|
|
|
onSearch(event) {
|
|
if (event.detail) {
|
|
wx.showToast({
|
|
title: '搜索:' + event.detail,
|
|
icon: 'none'
|
|
});
|
|
}
|
|
},
|
|
|
|
onCancel() {
|
|
wx.showToast({
|
|
title: '取消',
|
|
icon: 'none'
|
|
});
|
|
}
|
|
});
|