mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 10:22:44 +08:00
30 lines
390 B
JavaScript
30 lines
390 B
JavaScript
import Page from '../../common/page';
|
|
|
|
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'
|
|
});
|
|
}
|
|
});
|