mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-06-10 07:09:16 +08:00
92 lines
1.8 KiB
Vue
92 lines
1.8 KiB
Vue
<template>
|
||
<div class="zan-search" :class="{ 'zan-search--focus' : isFocus }">
|
||
<div class="zan-search__input-wrap">
|
||
<zan-icon name="search"></zan-icon>
|
||
<input
|
||
type="text"
|
||
:placeholder="placeholder"
|
||
class="zan-search__input"
|
||
v-model="value"
|
||
v-refocus="focusStatus"
|
||
@focus="handleFocus"
|
||
@keyup.enter="handleSearch">
|
||
<zan-icon name="clear" @click="handleClean" v-show="isFocus"></zan-icon>
|
||
</div>
|
||
<div class="zan-search__cancel" v-show="isFocus" @click="handleBack">取消</div>
|
||
</div>
|
||
</template>
|
||
|
||
<script>
|
||
import ZanIcon from 'packages/icon';
|
||
|
||
export default {
|
||
name: 'zan-search',
|
||
|
||
components: {
|
||
ZanIcon
|
||
},
|
||
|
||
props: {
|
||
placeholder: String
|
||
},
|
||
|
||
watch: {
|
||
value(val) {
|
||
this.$emit('change', val);
|
||
}
|
||
},
|
||
|
||
data() {
|
||
return {
|
||
value: '',
|
||
focusStatus: false,
|
||
isFocus: false
|
||
};
|
||
},
|
||
|
||
directives: {
|
||
refocus: {
|
||
update: function(el, state) {
|
||
if (state.value) {
|
||
el.focus();
|
||
}
|
||
}
|
||
}
|
||
},
|
||
|
||
methods: {
|
||
/**
|
||
* 进入input焦点,出现close和取消
|
||
*/
|
||
handleFocus() {
|
||
this.isFocus = true;
|
||
},
|
||
|
||
/**
|
||
* 点击close后清空vlaue后,再聚焦input框
|
||
*/
|
||
handleClean() {
|
||
this.value = '';
|
||
this.focusStatus = true;
|
||
},
|
||
|
||
/**
|
||
* 点击取消后,清空所有回复最初状态
|
||
*/
|
||
handleBack() {
|
||
this.value = '';
|
||
this.focusStatus = false;
|
||
this.isFocus = false;
|
||
this.$emit('cancel');
|
||
},
|
||
|
||
/**
|
||
* input输入回车后,发送回调
|
||
*/
|
||
handleSearch() {
|
||
this.$emit('search', this.value);
|
||
}
|
||
}
|
||
};
|
||
</script>
|