mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 19:41:45 +08:00
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:
parent
e70484e0f5
commit
fe87464eba
@ -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,
|
||||
|
@ -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>
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user