jifenshop.vue 3.9 KB
<template>
	<view class="content">
		<view class="navmiddle flexone jifennav">
			<view class="middleleft">
				<image src="../../static/search.png" mode=""></image>
			</view>
			<view class="middleenter">
				<input type="text" placeholder="请输入商品,店铺搜索" placeholder-class="enterk" @input="enterword" @confirm="finish"/>
			</view>
		</view>
		<view class="tapnav flextwo">
			<view class="tapnavitem" :class="order==0?'tapnavactive':''" @click="kindlist" :data-id="0">分类</view>
			<view class="tapnavitem" :class="order==1?'tapnavactive':''" @click="orderrange" :data-id="1">综合</view>
			<view class="tapnavitem" :class="order==3?'tapnavactive':''" @click="orderrange" :data-id="2">销量</view>
			<view class="tapnavitem flexone" :class="order==3||order==4?'tapnavactive':''" @click="selprice">
				<view class="tapprice">价格</view>
				<view class="tapbox flexfour">
					<view class="tapboxtop">
						<image src="../../static/toprow.png" mode=""></image>
					</view>
					<view class="tapboxtop">
						<image src="../../static/xiarow.png" mode=""></image>
					</view>
				</view>
			</view>
		</view>
		<view class="nodata" v-if="show">暂无数据</view>
		<view class="homeshoplist flexone goodboxlist" v-else>
			<view class="homeshopitem goodboxitem" v-for="(item,index) in shoplist" :key="index" @click="goodtail" :data-id="item.id">
				<view class="gooditemimg goodboximg">
					<image :src="item.image" mode=""></image>
					<!-- <view class="sale boxsale">已售76件</view> -->
				</view>
				<view class="goodname hidden boxgoodname">{{item.name}}</view>
				<view class="saleprice">¥{{item.price}}</view>
				<view class="flextwo">
					<view class="huiyuanprice dikou">抵扣:¥200</view>
					<view class="goodshou">已售{{item.sales}}</view>
				</view>
			</view>

		</view>



	</view>
</template>

<script>
	import app from "../../App.vue";
	export default {
		data() {
			return {
				page: 1,
				keyword: '',
				shoplist: [],
				order: '',
				score_category_id:'',
				show:false

			}
		},
		onLoad() {
			
		},
		methods: {
			// 输入文字
			enterword(e){
				console.log(e)
				this.keyword=e.detail.value;
				console.log(this.keyword)
			},
			finish(){
				this.shoplist=[],
				this.page=1;
				this.getfoodlist()
			},
			// 分类
			kindlist(e){
				this.order=e.currentTarget.dataset.id;
				uni.navigateTo({
					url:'/pages/homepage/goodkind'
				})
			},
			// 排序
			orderrange(e) {
				this.order = e.currentTarget.dataset.id;
				this.shoplist = [],
					this.page = 1;
				this.getfoodlist()
			},
			selprice() {
				this.price = !this.price;
				if (this.price == true) {
					this.order = 4
				} else {
					this.order = 5
				}
				this.shoplist = [],
					this.page = 1;
				this.getfoodlist()
			},
			// 获取积分商城商品列表
			getfoodlist() {
				let that = this;
				var url = 'score_goods/get_score_goods';
				var params = {
					score_category_id: this.score_category_id,
					keyword: that.keyword,
					order: that.order,
					page: that.page,
					pageNum: 10
				}
				console.log('7766554', params)
				app.post(url, params).then((res) => {
					console.log(res)
					that.shoplist = that.shoplist.concat(res.data.data);
					if(that.shoplist.length==0){
						that.show=true
					}

				}).catch((err) => {

				})
			},

			goodtail(e) {
				let id = e.currentTarget.dataset.id;
				// type 1 面访商品 2积分商城商品
				uni.navigateTo({
					url: '/pages/nearshop/goodtail?id=' + id + '&type=' + 2
				})
			}


		},
		onShow:function(){
			   
			   let pages = getCurrentPages();
			   
			   let currPage = pages[pages.length - 1]; //当前页面
			   this.score_category_id = currPage.data.selectId==undefined?'':currPage.data.selectId;
			  
			   this.shoplist=[];
			   this.page=1
			   this.getfoodlist();
			 
				
		}

	}
</script>

<style>
	@import url('../../base/homepage');

	.huiyuanprice {
		color: #FF9417;
		font-size: 22rpx;
	}
</style>