常用于商品搜索等
import "../../components/lanyun-search/lanyun-search.stml";
<lanyun-search
ondel="del"
onsearch="search"
onconfirm="confirm"
/>
del(e){
console.log(JSON.stringify(e.detail))
},
search(e){
console.log(JSON.stringify(e));
},
confirm(e){
console.log(JSON.stringify(e));
}
参数 | 说明 | 类型 | 默认值 |
---|---|---|---|
bgcolor | 搜索条背景颜色,选填 | String | #eee |
事件名 | 说明 | 回调参数 |
---|---|---|
search | 当点击搜索时触发 | {} |
del | 当点击删除字符时触发 | {"event":"ondel","input_id":"#search"} |
confirm | 当点击搜索键时触发 | {"value":"","id":"#search"} |