You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
149 lines
3.0 KiB
149 lines
3.0 KiB
<template>
|
|
<view>
|
|
<view class="search-content pr">
|
|
<view class="search-icon pa" @click="search_input_event">
|
|
<view class="search icon icon-color icon-font"></view>
|
|
</view>
|
|
|
|
<input type="text" :disabled="disableInput" confirm-type="search" class="round " :placeholder="propPlaceholder" :placeholder-class="propPlaceholderClass" v-model="keywords" @confirm="search_input_event" :style="'color:#666;background:'+inputBg+';'">
|
|
<view v-if="isShowdel" class="del-icon search-icon pa" @click="del_input_event">
|
|
<view v-if="isDel" class="font15 icon-color font20">×</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
<script>
|
|
|
|
const app = getApp();
|
|
export default {
|
|
data() {
|
|
return {
|
|
keywords:"",
|
|
isDel:false,
|
|
};
|
|
},
|
|
components: {},
|
|
props: {
|
|
propPlaceholder: {
|
|
type: String,
|
|
default: '输入商品名称搜索'
|
|
},
|
|
propPlaceholderClass: {
|
|
type: String,
|
|
default: 'cr-grey'
|
|
},
|
|
propIsRequired: {
|
|
type: Boolean,
|
|
default: true
|
|
},
|
|
disableInput:{
|
|
type: Boolean,
|
|
default: false
|
|
},
|
|
inputBg:{
|
|
type: String,
|
|
default: '#ffffff'
|
|
},
|
|
isShowdel:{
|
|
type: Boolean,
|
|
default: false
|
|
}
|
|
|
|
},
|
|
// watch:{
|
|
// propKeyWords:{
|
|
// handler(n,o){
|
|
// this.keywords = n;
|
|
// },
|
|
// immediate:true
|
|
// }
|
|
// },
|
|
watch:{
|
|
keywords:{
|
|
handler(n,o){
|
|
if(n){
|
|
this.isDel = true;
|
|
}else{
|
|
this.isDel = false;
|
|
}
|
|
},
|
|
immediate:true
|
|
}
|
|
},
|
|
methods: {
|
|
// 搜索事件
|
|
search_input_event() {
|
|
|
|
this.keywords = this.keywords || null;
|
|
// 是否验证必须要传值
|
|
if (this.propIsRequired && this.keywords == null) {
|
|
uni.showToast({
|
|
icon: 'none',
|
|
title: "请输入搜索关键字",
|
|
duration: 1000
|
|
});
|
|
return false;
|
|
}
|
|
this.$emit('onsearch', this.keywords);//回调
|
|
},
|
|
del_input_event(){
|
|
this.keywords = ""
|
|
this.$emit('ondel',this.keywords);//回调
|
|
},
|
|
|
|
},
|
|
destroyed() {
|
|
this.keywords = ""
|
|
}
|
|
};
|
|
</script>
|
|
<style>
|
|
.del-icon{
|
|
right: 0;
|
|
top: 0;
|
|
}
|
|
|
|
.cr-grey{
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
}
|
|
|
|
.round{
|
|
border-radius: 50rpx ;
|
|
}
|
|
|
|
.pr{
|
|
position: relative;
|
|
}
|
|
.pa{
|
|
position: absolute;
|
|
}
|
|
.dis-inline-block{
|
|
display: inline-block;
|
|
}
|
|
|
|
.search-content .search-icon {
|
|
text-align: center;
|
|
height: 40px;
|
|
line-height: 40px;
|
|
width: 30px;
|
|
|
|
}
|
|
|
|
.search-content .search-icon .icon-color{
|
|
color: #666;
|
|
}
|
|
|
|
.search-content .search-icon .icon-font{
|
|
font-size:20px ;
|
|
}
|
|
|
|
.search-content .round {
|
|
font-size: 16px;
|
|
padding: 0 30px;
|
|
box-sizing: border-box;
|
|
height: 40px;
|
|
line-height: 40px;
|
|
}
|
|
</style> |