|
@@ -4,7 +4,8 @@
|
|
|
<image class="search-img" :src="searchImg"></image>
|
|
|
<input class="search-input" :placeholder="placeholder" type="text" v-model.trim="searchText"
|
|
|
@confirm="confirmSearch" @input="inputSearch" placeholder-class="placeholder-name" />
|
|
|
- <view class="search-name" @click="confirmSearch">搜索</view>
|
|
|
+ <view class="search-name" v-if="searchText.length === 0" @click="confirmSearch">搜索</view>
|
|
|
+ <view class="search-name" v-if="searchText.length > 0" @click="upele">取消</view>
|
|
|
</view>
|
|
|
<view class="search-history" v-if="historyList.length">
|
|
|
<view class="history-title">
|
|
@@ -113,6 +114,9 @@
|
|
|
this.historyList = uni.getStorageSync('liu-search-name-list') || []
|
|
|
}
|
|
|
this.$emit('change', this.searchText)
|
|
|
+ },
|
|
|
+ upele () {
|
|
|
+ this.$emit('changes')
|
|
|
}
|
|
|
}
|
|
|
}
|