docs(Search): fix demo problem (#2458)

* docs(Search): fix demo problem

* docs(Search): add demo script

* docs(Search): adjust docs
This commit is contained in:
Lindy 2019-12-04 18:06:48 +08:00 committed by rex
parent e70484e0f5
commit fe87464eba
3 changed files with 35 additions and 3 deletions

View File

@ -11,7 +11,16 @@ Page({
});
},
onSearch(event) {
onSearch() {
if (this.data.value) {
wx.showToast({
title: '搜索:' + this.data.value,
icon: 'none'
});
}
},
onClick() {
if (this.data.value) {
wx.showToast({
title: '搜索:' + this.data.value,

View File

@ -29,6 +29,6 @@
label="地址"
shape="round"
>
<view slot="action" bind:tap="onSearch">搜索</view>
<view slot="action" bind:tap="onClick">搜索</view>
</van-search>
</demo-block>

View File

@ -43,12 +43,35 @@
value="{{ value }}"
placeholder="请输入搜索关键词"
use-action-slot
bind:change="onChange"
bind:search="onSearch"
>
<view slot="action" bind:tap="onSearch">搜索</view>
<view slot="action" bind:tap="onClick">搜索</view>
</van-search>
```
```javascript
Page({
data: {
value: ''
},
onChange(e) {
this.setData({
value: e.detail
});
},
onSearch() {
Toast('搜索' + this.data.value);
},
onClick() {
Toast('搜索' + this.data.value);
},
});
```
## API
### Props