123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353 |
- <template>
- <view class="sld_point_search">
- <view class="fixed_top_status_bar"></view>
- <!-- 小程序头部兼容 -->
- <view :class="{mp_search_box:true,fixedTop:isTop}">
- <view class="search_con">
- <image :src="imgUrl+'search.png'" mode="aspectFit" class="search_img"></image>
- <input confirm-type="search" @confirm="search" class="ser_input" type="text" v-model="keyword" :placeholder="$L('搜索')" placeholder-class="search_input" />
- <image class='clear_content' v-show="keyword" @click="clearInputVal" :src="imgUrl+'input_clear.png'" />
- </view>
- <text class="search_btn" @click="backLastPage">{{$L('取消')}}</text>
- </view>
- <view class="no_data_con" v-if="recommendedList.length==0">
- <!-- 暂无历史记录 -->
- <text class="no_history" v-if="history_val.length==0&&!keyword">{{$L('暂无历史搜索记录~')}}</text>
- <!-- 搜索历史 start -->
- <view class="search-item" v-if="!keyword&&history_val && history_val.length" style="padding-bottom: 0;">
- <view class="search-title">
- <text>{{$L('搜索历史')}}</text>
- <view class="del" @click="clearHistory">
- <image :src="imgUrl+'del_search.png'" />
- </view>
- </view>
- <view class="search-con">
- <view class="item" v-for="(item,index) in history_val" :key="index" @click="btnSearch(item)">{{item}}</view>
- </view>
- </view>
- <!-- 搜索历史 end -->
- <!-- 分类空页面 -->
- <view class="empty_sort_page" v-if="keyword&&is_show_empty">
- <image :src="imgUrl+'index/empty.png'" mode="aspectFit" class="empty_img"></image>
- <view class="empty_text">{{$L('暂无数据')}}</view>
- </view>
- </view>
- <!-- 积分商城搜索列表 -->
- <view class="recommend_list">
- <recommendGoods class='recommend_pre' v-for="(recommendItem,recommendIndex) in recommendedList" :goods_info="recommendItem"></recommendGoods>
- </view>
- <recommendItemList v-if='!this.hasMore' ref='recommendList'></recommendItemList>
- </view>
- </template>
- <script>
- import {
- mapState,
- } from 'vuex';
- import recommendGoods from '../components/recommend_item_v.vue'
- import loadingState from "../components/loading-state.vue";
- import recommendItemList from '../components/recommend_list.vue'
- export default {
- data() {
- return {
- imgUrl: getApp().globalData.imgUrl,
- keyword:'',
- recommendedList:[],
- loadingState: '',
- current:1,
- pageSize:10,
- hasMore:false,
- is_show_empty:false,
- labelId:'',
- history_val:[],
- isTop:false
- };
- },
- components: {
- recommendGoods,
- loadingState,
- recommendItemList
- },
- computed: {
- ...mapState(['hasLogin', 'userInfo', 'userCenterData'])
- },
- async mounted() {
- this.getHistoryList()
- },
- onReachBottom() {
- if(this.hasMore){
- this.search()
- }else{
- this.$refs.recommendList.getMoreData();
- }
- },
- onPageScroll(e){
- if(e.scrollTop>100){
- this.isTop = true
- }else{
- this.isTop = false
- }
- },
- onLoad(options) {
- if(options.labelId){
- this.labelId=options.labelId
- }
- if(options.keyword){
- this.keyword=options.keyword
- this.search()
- }
- },
- methods: {
- clearInputVal(){
- this.keyword=''
- },
- btnSearch(item){
- this.keyword=item
- this.search()
- },
- backLastPage(){
- uni.navigateBack()
- },
- search(){
- uni.hideKeyboard()
- uni.showLoading()
- let param = {}
- param.data={}
- param.data.keyword=this.keyword
- if(this.labelId){
- param.data.labelId=this.labelId
- }
- param.url = 'v3/integral/front/integral/mall/goodsList'
- param.method = 'GET'
- this.$request(param).then(res => {
- if (res.state == 200) {
- this.setHistoryData()
- this.recommendedList=res.data.list
- if(this.recommendedList.length==0){
- this.is_show_empty=true
- }else{
- this.is_show_empty=false
- }
- this.hasMore = this.$checkPaginationHasMore(res.data.pagination); //是否还有数据
- if (this.hasMore) {
- this.current++;
- this.loadingState = 'allow_loading_more';
- } else {
- this.loadingState = 'no_more_data';
- }
- uni.hideLoading()
- uni.pageScrollTo({
- duration:100,
- scrollTop:0
- })
- }else{
- uni.hideLoading()
- that.$api.msg(res.msg)
- }
- })
- },
- //设置缓存
- setHistoryData() {
- let {
- history_val,
- keyword
- } = this;
- let tmp_data = [...history_val];
- tmp_data.unshift(keyword);
- // 最多取12条,不重复且不为空的数据
- tmp_data = tmp_data.reduce((a, b) => {
- (a.length < 12 && b && a.indexOf(b) == -1) ? a.push(b): null;
- return a;
- }, [])
- let history_val_str = tmp_data.join('~');
- this.history_val = tmp_data;
- uni.setStorageSync("point_his_keyword", history_val_str)
- },
- //获取历史记录
- getHistoryList() {
- let history_data = uni.getStorageSync('point_his_keyword');
- if (history_data) {
- let his_array = history_data.split("~");
- let last_arr = [];
- for (var i = 0; i < his_array.length; i++) {
- !this.$checkSpace(his_array[i]) && last_arr.push(his_array[i]);
- }
- this.history_val = last_arr;
- }
- },
- //清除搜索历史
- clearHistory() {
- uni.removeStorageSync('point_his_keyword');
- this.history_val = [];
- },
- },
- }
- </script>
- <style lang="scss">
- .fixed_top_status_bar {
- position: fixed;
- /* #ifdef APP-PLUS */
- height: var(--status-bar-height);
- /* #endif */
- /* #ifndef APP-PLUS */
- height: 0;
- /* #endif */
- top: 0;
- left: 0;
- right: 0;
- z-index: 99;
- background: #fff;
- }
- page{
- background: #F5F5F5;
- width: 750rpx;
- margin: 0 auto;
- }
- .mp_search_box {
- display: flex;
- align-items: center;
- background-color: white;
- padding: 11rpx 0;
- transition: all 0.4s ease;
- /* #ifdef APP-PLUS */
- padding-top: calc(var(--status-bar-height) + 11rpx);
- /* #endif */
- .search_con{
- width: 631rpx;
- height: 65rpx;
- background: #F5F5F5;
- border-radius: 33rpx;
- padding:18rpx 22rpx;
- display: flex;
- align-items: center;
- margin-left: 20rpx;
- .ser_input{
- flex: 1;
- padding-left: 20rpx;
- }
- .search_img{
- width: 30rpx;
- height: 30rpx;
- }
- .clear_content{
- width: 44rpx !important;
- height: 44rpx !important;
- }
- .search_input{
- font-size: 28rpx;
- color: #999999;
- }
- }
- .search_btn{
- margin-left: 20rpx;
- font-size: 30rpx;
- color: #333333;
- }
- }
- .fixedTop{
- position: fixed;
- top: 0;
- z-index: 1000;
- width: 100%;
- }
- .no_data_con{
- .no_history{
- color: #2D2D2D;
- font-size: 12px;
- display: inline-block;
- width: 100%;
- height: 100%;
- text-align: center;
- line-height: 500rpx;
- }
- height: 514rpx;
- background-color: white;
- }
- .recommend_list{
- margin-top: 20rpx;
- display: flex;
- flex-wrap: wrap;
- padding: 0 20rpx;
- .recommend_pre{
- margin-right: 20rpx!important;
- &:nth-child(2n){
- margin-right: 0!important;
- }
- }
- }
- // 空页面
- .empty_sort_page {
- width: 100%;
- display: flex;
- flex-direction: column;
- align-items: center;
- padding: 100rpx;
- .empty_img {
- width: 210rpx;
- height: 210rpx;
- margin-bottom: 32rpx;
- }
- .empty_text {
- font-size: 26rpx;
- color: #999;
- }
- }
- .search-item {
- padding: 30rpx 28rpx;
- .search-title {
- display: flex;
- align-items: center;
- justify-content: space-between;
- height: 48rpx;
- color: #2D2D2D;
- font-size: 28rpx;
- font-weight: bold;
- image {
- width: 48rpx;
- height: 48rpx;
- }
- }
- .search-con {
- display: flex;
- align-items: center;
- flex-wrap: wrap;
- .item {
- height: 50rpx;
- padding: 0 18rpx;
- color: #2D2D2D;
- line-height: 50rpx;
- font-size: 24rpx;
- background-color: #F5F5F5;
- border-radius: 25rpx;
- margin-right: 20rpx;
- margin-top: 20rpx;
- max-width: 274rpx;
- white-space: nowrap;
- text-overflow: ellipsis;
- overflow: hidden;
- word-break: break-all;
- }
- }
- }
- </style>
|