uni-app 给input框添加点击清空按钮

用value绑定输入的值,要通过@input事件监听,这个方法只要input值发生改变就会调用,v-if控制‘清空’这个图标,没值就不显示,我悟了!!!

效果图

在这里插入图片描述
在这里插入图片描述

<view slot="default" class="search_box">
	<text class="icon_search"></text>
	<input style="width: 280px;" :value="searchName" class="prompt" placeholder="请输入员工姓名" @input="theBlur"></input>
	<text v-if="searchName" class="icon_close" @click="close"></text>
</view>
<sript>
//methods
close:function(){
	this.searchName = ''
	this.queryByInput()
},
theBlur(e){
	console.log(e.target.value)
	this.searchName = e.target.value
	this.queryByInput()//查询列表调用的方法
}
<sript>
<style>
	.search_box {
		width: 400upx;
		height: 64upx;
		background-color: #f5f5f5;
		border-radius: 32upx;
		display: flex;
		align-items: center;
		padding: 0upx 40upx;
		.prompt {
			font-size: 28upx;
			color: #cccccc;
		}
	}
	
	.icon_search {
		background-image: url(../../static/nav/map_ic_search.png);
		background-position: center center;
		background-repeat: no-repeat;
		background-size: cover;
		width: 32upx;
		height: 28upx;
		margin-right: 20upx;
	}
	
	.icon_close {
		background-image: url(../../static/nav/del.png);
		background-position: center center;
		background-repeat: no-repeat;
		background-size: cover;
		width: 32upx;
		height: 28upx;
		margin-right: 10upx;
	}
</style>
评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值