Lindy fe87464eba docs(Search): fix demo problem (#2458)
* docs(Search): fix demo problem

* docs(Search): add demo script

* docs(Search): adjust docs
2019-12-04 18:06:48 +08:00

46 lines
631 B
JavaScript

import Page from '../../common/page';
Page({
data: {
value: ''
},
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'
});
}
});