mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +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) {
|
if (this.data.value) {
|
||||||
wx.showToast({
|
wx.showToast({
|
||||||
title: '搜索:' + this.data.value,
|
title: '搜索:' + this.data.value,
|
||||||
|
@ -29,6 +29,6 @@
|
|||||||
label="地址"
|
label="地址"
|
||||||
shape="round"
|
shape="round"
|
||||||
>
|
>
|
||||||
<view slot="action" bind:tap="onSearch">搜索</view>
|
<view slot="action" bind:tap="onClick">搜索</view>
|
||||||
</van-search>
|
</van-search>
|
||||||
</demo-block>
|
</demo-block>
|
||||||
|
@ -43,12 +43,35 @@
|
|||||||
value="{{ value }}"
|
value="{{ value }}"
|
||||||
placeholder="请输入搜索关键词"
|
placeholder="请输入搜索关键词"
|
||||||
use-action-slot
|
use-action-slot
|
||||||
|
bind:change="onChange"
|
||||||
bind:search="onSearch"
|
bind:search="onSearch"
|
||||||
>
|
>
|
||||||
<view slot="action" bind:tap="onSearch">搜索</view>
|
<view slot="action" bind:tap="onClick">搜索</view>
|
||||||
</van-search>
|
</van-search>
|
||||||
```
|
```
|
||||||
|
|
||||||
|
```javascript
|
||||||
|
Page({
|
||||||
|
data: {
|
||||||
|
value: ''
|
||||||
|
},
|
||||||
|
|
||||||
|
onChange(e) {
|
||||||
|
this.setData({
|
||||||
|
value: e.detail
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
onSearch() {
|
||||||
|
Toast('搜索' + this.data.value);
|
||||||
|
},
|
||||||
|
|
||||||
|
onClick() {
|
||||||
|
Toast('搜索' + this.data.value);
|
||||||
|
},
|
||||||
|
});
|
||||||
|
```
|
||||||
|
|
||||||
## API
|
## API
|
||||||
|
|
||||||
### Props
|
### Props
|
||||||
|
Loading…
x
Reference in New Issue
Block a user