You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
510 lines
13 KiB
510 lines
13 KiB
<template>
|
|
<view class="wrapper" :style="colorStyle">
|
|
<view class='productList'>
|
|
<view class='search bg-color acea-row row-between-wrapper'>
|
|
<view class='input acea-row row-between-wrapper'><text class='iconfont icon-sousuo'></text>
|
|
<input :placeholder='$t(`搜索商品名称`)' placeholder-class='placeholder' confirm-type='search'
|
|
name="search" :value='where.keyword' @confirm="searchSubmit"></input>
|
|
</view>
|
|
<view class='iconfont' :class='is_switch==true?"icon-pailie":"icon-tupianpailie"' @click='Changswitch'>
|
|
</view>
|
|
</view>
|
|
|
|
<view class='nav acea-row row-middle'>
|
|
<view class='item line1' :class='title ? "font-num":""' @click='set_where(1)'>
|
|
{{title ? $t(title) : $t(`默认`)}}
|
|
</view>
|
|
<view class='item' @click='set_where(2)'>
|
|
{{$t(`价格`)}}
|
|
<image v-if="price==1" src='../../../static/images/up.png'></image>
|
|
<image v-else-if="price==2" src='../../../static/images/down.png'></image>
|
|
<image v-else src='../../../static/images/horn.png'></image>
|
|
</view>
|
|
<view class='item' @click='set_where(3)'>
|
|
{{$t(`销量`)}}
|
|
<image v-if="stock==1" src='../../../static/images/up.png'></image>
|
|
<image v-else-if="stock==2" src='../../../static/images/down.png'></image>
|
|
<image v-else src='../../../static/images/horn.png'></image>
|
|
</view>
|
|
<!-- down -->
|
|
<view class='item' :class='nows ? "font-color":""' @click='set_where(4)'>{{$t(`新品`)}}</view>
|
|
</view>
|
|
<scroll-view :scroll-top="scrollTop" scroll-y="true" class="scroll-Y" @scroll="scroll"
|
|
@scrolltolower="scrolltolower">
|
|
<view class='list acea-row row-between-wrapper' :class='is_switch==true?"":"on"'>
|
|
<view class='item' :class='is_switch==true?"":"on"' hover-class='none'
|
|
v-for="(item,index) in productList" :key="index" @click="godDetail(item)">
|
|
<view class='pictrue' :class='is_switch==true?"":"on"'>
|
|
<image :src='item.image' :class='is_switch==true?"":"on"'></image>
|
|
<span class="pictrue_log_class"
|
|
:class="is_switch === true ? 'pictrue_log_big' : 'pictrue_log'"
|
|
v-if="item.activity && item.activity.type === '1' && $permission('seckill')">{{$t(`秒杀`)}}</span>
|
|
<span class="pictrue_log_class"
|
|
:class="is_switch === true ? 'pictrue_log_big' : 'pictrue_log'"
|
|
v-if="item.activity && item.activity.type === '2' && $permission('bargain')">{{$t(`砍价`)}}</span>
|
|
<span class="pictrue_log_class"
|
|
:class="is_switch === true ? 'pictrue_log_big' : 'pictrue_log'"
|
|
v-if="item.activity && item.activity.type === '3' && $permission('combination')">{{$t(`拼团`)}}</span>
|
|
</view>
|
|
<view class='text' :class='is_switch==true?"":"on"'>
|
|
<view class='name line2'>{{item.store_name}}</view>
|
|
<view class='money font-color' :class='is_switch==true?"":"on"'>{{$t(`¥`)}}<text
|
|
class='num'>{{item.price}}</text></view>
|
|
<view class='vip acea-row row-between-wrapper' :class='is_switch==true?"":"on"'>
|
|
<view class='vip-money' v-if="item.vip_price && item.vip_price > 0">
|
|
{{$t(`¥`)}}{{item.vip_price}}
|
|
<image src='../../../static/images/vip.png'></image>
|
|
</view>
|
|
<view v-else></view>
|
|
<view>{{$t(`已售`)}} {{item.sales}}{{$t(item.unit_name) || $t(`件`)}}</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class='loadingicon acea-row row-center-wrapper' v-if='productList.length > 0'>
|
|
<text class='loading iconfont icon-jiazai' :hidden='loading==false'></text>{{loadTitle}}
|
|
</view>
|
|
</view>
|
|
|
|
</scroll-view>
|
|
|
|
</view>
|
|
<view class='noCommodity' v-if="productList.length==0 && where.page > 1">
|
|
<view class='emptyBox'>
|
|
<image :src="imgHost + '/statics/images/no-thing.png'"></image>
|
|
<view class="tips">{{$t(`暂无商品,去看点别的吧`)}}</view>
|
|
</view>
|
|
<recommend :hostProduct="hostProduct"></recommend>
|
|
</view>
|
|
<!-- #ifndef MP -->
|
|
<home></home>
|
|
<!-- #endif -->
|
|
<view v-if="scrollTopShow" class="back-top" @click="goTop">
|
|
<text class="iconfont icon-xiangshang"></text>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import home from '@/components/home';
|
|
import {
|
|
getProductslist,
|
|
getProductHot
|
|
} from '@/api/store.js';
|
|
import recommend from '@/components/recommend';
|
|
import {
|
|
mapGetters
|
|
} from "vuex";
|
|
import {
|
|
goShopDetail
|
|
} from '@/libs/order.js'
|
|
import {
|
|
HTTP_REQUEST_URL
|
|
} from '@/config/app';
|
|
import colors from '@/mixins/color.js';
|
|
export default {
|
|
computed: mapGetters(['uid']),
|
|
components: {
|
|
recommend,
|
|
home
|
|
},
|
|
mixins: [colors],
|
|
data() {
|
|
return {
|
|
imgHost: HTTP_REQUEST_URL,
|
|
productList: [],
|
|
is_switch: true,
|
|
where: {
|
|
sid: 0,
|
|
keyword: '',
|
|
priceOrder: '',
|
|
salesOrder: '',
|
|
news: 0,
|
|
page: 1,
|
|
limit: 20,
|
|
cid: 0,
|
|
},
|
|
price: 0,
|
|
stock: 0,
|
|
nows: false,
|
|
loadend: false,
|
|
loading: false,
|
|
loadTitle: this.$t(`加载更多`),
|
|
title: '',
|
|
hostProduct: [],
|
|
hotPage: 1,
|
|
hotLimit: 10,
|
|
hotScroll: false,
|
|
scrollTop: 0,
|
|
old: {
|
|
scrollTop: 0
|
|
},
|
|
scrollTopShow: false
|
|
};
|
|
},
|
|
onLoad: function(options) {
|
|
this.where.cid = options.cid || 0;
|
|
this.where.coupon_category_id = options.coupon_category_id || '';
|
|
this.$set(this.where, 'sid', options.sid || 0);
|
|
this.title = options.title || '';
|
|
this.$set(this.where, 'keyword', options.searchValue || '');
|
|
this.$set(this.where, 'productId', options.productId || '');
|
|
this.get_product_list();
|
|
},
|
|
methods: {
|
|
scroll(e) {
|
|
this.scrollTopShow = e.detail.scrollTop > 150
|
|
this.old.scrollTop = e.detail.scrollTop
|
|
},
|
|
goTop(e) {
|
|
// 解决view层不同步的问题
|
|
this.scrollTop = this.old.scrollTop
|
|
this.$nextTick(() => {
|
|
this.scrollTop = 0
|
|
});
|
|
},
|
|
// 去详情页
|
|
godDetail(item) {
|
|
goShopDetail(item, this.uid).then(res => {
|
|
uni.navigateTo({
|
|
url: `/pages/goods_details/index?id=${item.id}`
|
|
})
|
|
})
|
|
},
|
|
Changswitch: function() {
|
|
let that = this;
|
|
that.is_switch = !that.is_switch
|
|
},
|
|
searchSubmit: function(e) {
|
|
let that = this;
|
|
that.$set(that.where, 'keyword', e.detail.value);
|
|
that.loadend = false;
|
|
that.$set(that.where, 'page', 1)
|
|
this.get_product_list(true);
|
|
},
|
|
/**
|
|
* 获取我的推荐
|
|
*/
|
|
get_host_product: function() {
|
|
let that = this;
|
|
if (that.hotScroll) return
|
|
getProductHot(
|
|
that.hotPage,
|
|
that.hotLimit,
|
|
).then(res => {
|
|
that.hotPage++
|
|
that.hotScroll = res.data.length < that.hotLimit
|
|
that.hostProduct = that.hostProduct.concat(res.data)
|
|
// that.$set(that, 'hostProduct', res.data)
|
|
});
|
|
},
|
|
//点击事件处理
|
|
set_where: function(e) {
|
|
switch (e) {
|
|
case 1:
|
|
// #ifdef H5
|
|
return history.back();
|
|
// #endif
|
|
// #ifndef H5
|
|
return uni.navigateBack({
|
|
delta: 1,
|
|
})
|
|
// #endif
|
|
break;
|
|
case 2:
|
|
if (this.price == 0) this.price = 1;
|
|
else if (this.price == 1) this.price = 2;
|
|
else if (this.price == 2) this.price = 0;
|
|
this.stock = 0;
|
|
break;
|
|
case 3:
|
|
if (this.stock == 0) this.stock = 1;
|
|
else if (this.stock == 1) this.stock = 2;
|
|
else if (this.stock == 2) this.stock = 0;
|
|
this.price = 0
|
|
break;
|
|
case 4:
|
|
this.nows = !this.nows;
|
|
break;
|
|
}
|
|
this.loadend = false;
|
|
this.$set(this.where, 'page', 1);
|
|
this.get_product_list(true);
|
|
},
|
|
//设置where条件
|
|
setWhere: function() {
|
|
if (this.price == 0) this.where.priceOrder = '';
|
|
else if (this.price == 1) this.where.priceOrder = 'asc';
|
|
else if (this.price == 2) this.where.priceOrder = 'desc';
|
|
if (this.stock == 0) this.where.salesOrder = '';
|
|
else if (this.stock == 1) this.where.salesOrder = 'asc';
|
|
else if (this.stock == 2) this.where.salesOrder = 'desc';
|
|
this.where.news = this.nows ? 1 : 0;
|
|
},
|
|
//查找产品
|
|
get_product_list: function(isPage) {
|
|
let that = this;
|
|
that.setWhere();
|
|
if (that.loadend) return;
|
|
if (that.loading) return;
|
|
if (isPage === true) that.$set(that, 'productList', []);
|
|
that.loading = true;
|
|
that.loadTitle = '';
|
|
getProductslist(that.where).then(res => {
|
|
let list = res.data;
|
|
let productList = that.$util.SplitArray(list, that.productList);
|
|
let loadend = list.length < that.where.limit;
|
|
that.loadend = loadend;
|
|
that.loading = false;
|
|
that.loadTitle = loadend ? that.$t(`没有更多内容啦~`) : that.$t(`加载更多`);
|
|
that.$set(that, 'productList', productList);
|
|
that.$set(that.where, 'page', that.where.page + 1);
|
|
if (!that.productList.length) this.get_host_product();
|
|
}).catch(err => {
|
|
that.loading = false;
|
|
that.loadTitle = that.$t(`加载更多`);
|
|
});
|
|
},
|
|
scrolltolower() {
|
|
if (this.productList.length > 0) {
|
|
this.get_product_list();
|
|
uni.$emit('scroll');
|
|
} else {
|
|
this.get_host_product();
|
|
uni.$emit('scroll');
|
|
}
|
|
}
|
|
},
|
|
onPullDownRefresh() {},
|
|
onReachBottom() {},
|
|
// 滚动监听
|
|
onPageScroll(e) {
|
|
// 传入scrollTop值并触发所有easy-loadimage组件下的滚动监听事件
|
|
uni.$emit('scroll');
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
.scroll-Y {
|
|
margin-top: 86rpx;
|
|
height: calc(100vh - 43rpx);
|
|
}
|
|
|
|
.wrapper {
|
|
position: relative;
|
|
max-height: 100vh;
|
|
overflow: hidden;
|
|
|
|
.back-top {
|
|
position: absolute;
|
|
right: 40rpx;
|
|
bottom: 60rpx;
|
|
width: 60rpx;
|
|
height: 60rpx;
|
|
border-radius: 50%;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
border: 1rpx solid #ccc;
|
|
background-color: #fff;
|
|
|
|
.icon-xiangshang {
|
|
color: #ccc;
|
|
font-weight: bold;
|
|
}
|
|
}
|
|
}
|
|
|
|
.productList .search {
|
|
width: 100%;
|
|
height: 86rpx;
|
|
padding-left: 23rpx;
|
|
box-sizing: border-box;
|
|
position: fixed;
|
|
left: 0;
|
|
top: 0;
|
|
z-index: 9;
|
|
}
|
|
|
|
.productList .search .input {
|
|
width: 640rpx;
|
|
height: 60rpx;
|
|
background-color: #fff;
|
|
border-radius: 50rpx;
|
|
padding: 0 20rpx;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.productList .search .input input {
|
|
width: 548rpx;
|
|
height: 100%;
|
|
font-size: 26rpx;
|
|
}
|
|
|
|
.productList .search .input .placeholder {
|
|
color: #999;
|
|
}
|
|
|
|
.productList .search .input .iconfont {
|
|
font-size: 35rpx;
|
|
color: #555;
|
|
}
|
|
|
|
.productList .search .icon-pailie,
|
|
.productList .search .icon-tupianpailie {
|
|
color: #fff;
|
|
width: 62rpx;
|
|
font-size: 40rpx;
|
|
height: 86rpx;
|
|
line-height: 86rpx;
|
|
}
|
|
|
|
.productList .nav {
|
|
height: 86rpx;
|
|
color: #454545;
|
|
position: fixed;
|
|
left: 0;
|
|
width: 100%;
|
|
font-size: 28rpx;
|
|
background-color: #fff;
|
|
margin-top: 86rpx;
|
|
top: 0;
|
|
z-index: 9;
|
|
}
|
|
|
|
.productList .nav .item {
|
|
width: 25%;
|
|
text-align: center;
|
|
}
|
|
|
|
.productList .nav .item.font-color {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.productList .nav .item image {
|
|
width: 15rpx;
|
|
height: 19rpx;
|
|
margin-left: 10rpx;
|
|
}
|
|
|
|
.productList .list {
|
|
padding: 0 20rpx 30rpx 20rpx;
|
|
margin-top: 86rpx;
|
|
}
|
|
|
|
.productList .list.on {
|
|
background-color: #fff;
|
|
border-top: 1px solid #f6f6f6;
|
|
}
|
|
|
|
.productList .list .item {
|
|
width: 345rpx;
|
|
margin-top: 20rpx;
|
|
background-color: #fff;
|
|
border-radius: 20rpx;
|
|
}
|
|
|
|
.productList .list .item.on {
|
|
width: 100%;
|
|
display: flex;
|
|
border-bottom: 1rpx solid #f6f6f6;
|
|
padding: 30rpx 0;
|
|
margin: 0;
|
|
}
|
|
|
|
.productList .list .item .pictrue {
|
|
position: relative;
|
|
width: 100%;
|
|
height: 345rpx;
|
|
|
|
}
|
|
|
|
.productList .list .item .name {
|
|
line-height: 42rpx;
|
|
height: 84rpx;
|
|
}
|
|
|
|
.productList .list .item .pictrue.on {
|
|
width: 180rpx;
|
|
height: 180rpx;
|
|
}
|
|
|
|
.productList .list .item .pictrue image {
|
|
width: 100%;
|
|
height: 100%;
|
|
border-radius: 20rpx 20rpx 0 0;
|
|
}
|
|
|
|
.productList .list .item .pictrue image.on {
|
|
border-radius: 6rpx;
|
|
}
|
|
|
|
.productList .list .item .text {
|
|
padding: 20rpx 17rpx 26rpx 17rpx;
|
|
font-size: 30rpx;
|
|
color: #222;
|
|
}
|
|
|
|
.productList .list .item .text.on {
|
|
width: 508rpx;
|
|
padding: 0 0 0 22rpx;
|
|
}
|
|
|
|
.productList .list .item .text .money {
|
|
font-size: 26rpx;
|
|
font-weight: bold;
|
|
margin-top: 8rpx;
|
|
}
|
|
|
|
.productList .list .item .text .money.on {
|
|
margin-top: 50rpx;
|
|
}
|
|
|
|
.productList .list .item .text .money .num {
|
|
font-size: 34rpx;
|
|
}
|
|
|
|
.productList .list .item .text .vip {
|
|
font-size: 22rpx;
|
|
color: #aaa;
|
|
margin-top: 7rpx;
|
|
}
|
|
|
|
.productList .list .item .text .vip.on {
|
|
margin-top: 12rpx;
|
|
}
|
|
|
|
.productList .list .item .text .vip .vip-money {
|
|
font-size: 24rpx;
|
|
color: #282828;
|
|
font-weight: bold;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.productList .list .item .text .vip .vip-money image {
|
|
width: 64rpx;
|
|
height: 26rpx;
|
|
margin-left: 4rpx;
|
|
}
|
|
|
|
.noCommodity {
|
|
background-color: #fff;
|
|
padding-bottom: 30rpx;
|
|
|
|
.emptyBox {
|
|
text-align: center;
|
|
padding-top: 20rpx;
|
|
|
|
.tips {
|
|
color: #aaa;
|
|
font-size: 26rpx;
|
|
}
|
|
|
|
image {
|
|
width: 414rpx;
|
|
height: 304rpx;
|
|
}
|
|
}
|
|
}
|
|
</style>
|
|
|