123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203 |
- <template>
- <view :style="colorStyle">
- <view class='searchGood'>
- <view class='search acea-row row-between-wrapper'>
- <view class='input acea-row row-between-wrapper'>
- <text class='iconfont icon-sousuo'></text>
- <input type='text' v-model='searchValue' @confirm="inputConfirm" confirm-type="search" focus placeholder='点击搜索商品'
- placeholder-class='placeholder' @input="setValue"></input>
- </view>
- <view class='bnt' @tap='searchBut'>搜索</view>
- </view>
- <template v-if="history.length">
- <view class='title acea-row row-between-wrapper'>
- <view>搜索历史</view>
- <view class="iconfont icon-shanchu" @click="clear"></view>
- </view>
- <view class='list acea-row'>
- <block v-for="(item,index) in history" :key="index">
- <view class='item history-item line1' @tap='setHotSearchValue(item.keyword)' v-if="item.keyword">{{item.keyword}}</view>
- </block>
- </view>
- </template>
- <template v-if="hotSearchList.length">
- <view class='title'>热门搜索</view>
- <view class='list acea-row'>
- <block v-for="(item,index) in hotSearchList" :key="index">
- <view class='item line1' @tap='setHotSearchValue(item.val)' v-if="item.val">{{item.val}}</view>
- </block>
- </view>
- </template>
- </view>
- <home v-if="navigation"></home>
- </view>
- </template>
- <script>
- import home from '@/components/home/index.vue'
- import {
- searchList,
- clearSearch
- } from '@/api/api.js';
- import colors from "@/mixins/color";
- export default {
- components: {
- home
- },
- mixins: [colors],
- data() {
- return {
- searchValue: '',
- focus: true,
- hotSearchList: [],
- history: [],
- };
- },
- onShow: function() {
- uni.removeStorageSync('form_type_cart');
- this.searchList();
- try {
- this.hotSearchList = uni.getStorageSync('hotList');
- } catch (err) {}
- },
- methods: {
- searchList() {
- searchList({
- page: 1,
- limit: 10
- }).then(res => {
- this.history = res.data;
- });
- },
- clear() {
- let that = this;
- clearSearch().then(res => {
- uni.showToast({
- title: res.msg,
- success() {
- that.history = [];
- }
- });
- });
- },
- inputConfirm: function(event) {
- if (event.detail.value) {
- uni.hideKeyboard();
- this.setHotSearchValue(event.detail.value);
- }
- },
- setHotSearchValue: function(event) {
- uni.navigateTo({
- url: '/pages/goods/goods_list/index?title=默认&searchValue='+encodeURIComponent(event)
- });
- },
- setValue: function(event) {
- this.$set(this, 'searchValue', event.detail.value);
- },
- searchBut: function() {
- let that = this;
- that.focus = false;
- if (that.searchValue.length > 0) {
- uni.navigateTo({
- url:'/pages/goods/goods_list/index?title=默认&searchValue='+encodeURIComponent(that.searchValue)
- });
- } else {
- return this.$util.Tips({
- title: '请输入要搜索的商品',
- icon: 'none',
- duration: 1000,
- mask: true,
- });
- }
- }
- }
- }
- </script>
- <style lang="scss">
- page {
- background-color: #fff !important;
- }
-
- .noCommodity{
- border-top-width: 0;
- }
- .searchGood .search {
- padding-left: 30rpx;
- }
- .searchGood .search {
- margin-top: 20rpx;
- }
- .searchGood .search .input {
- width: 598rpx;
- background-color: #f7f7f7;
- border-radius: 33rpx;
- padding: 0 35rpx;
- box-sizing: border-box;
- height: 66rpx;
- }
- .searchGood .search .input input {
- width: 472rpx;
- font-size: 28rpx;
- }
- .searchGood .search .input .placeholder {
- color: #999;
- }
- .searchGood .search .input .iconfont {
- color: #555;
- font-size: 35rpx;
- }
- .searchGood .search .bnt {
- width: 120rpx;
- text-align: center;
- height: 66rpx;
- line-height: 66rpx;
- font-size: 30rpx;
- color: #282828;
- }
- .searchGood .title {
- font-size: 28rpx;
- color: #999;
- margin: 50rpx 30rpx 25rpx 30rpx;
- }
- .searchGood .title .iconfont {
- font-size: 28rpx;
- }
- .searchGood .list {
- padding-left: 10rpx;
- }
- .searchGood .list .item {
- font-size: 26rpx;
- color: #454545;
- padding: 0 21rpx;
- height: 60rpx;
- border-radius: 3rpx;
- line-height: 60rpx;
- border: 1rpx solid #aaa;
- margin: 0 0 20rpx 20rpx;
- }
- .searchGood .list .item.history-item {
- height: 50rpx;
- border: none;
- border-radius: 25rpx;
- background-color: #F7F7F7;
- line-height: 50rpx;
- }
- .searchGood .line {
- border-bottom: 1rpx solid #eee;
- margin: 20rpx 30rpx 0 30rpx;
- }
- </style>
|