lilishop-ui/buyer/src/pages/GoodsList.vue

344 lines
8.4 KiB
Vue
Raw Normal View History

2021-05-13 10:56:04 +08:00
<template>
<div>
<BaseHeader></BaseHeader>
<Search @search="handleSearch"></Search>
<drawer></drawer>
<cateNav></cateNav>
<div class="container">
<!-- 商品筛选栏 -->
<GoodsClassNav @getParams="getParams"></GoodsClassNav>
<!-- 商品展示容器 -->
<div class="goods-box">
<!-- 商品列表 -->
<div class="goods-list-box">
<!-- 排序 -->
<div class="goods-list-tool">
<ul>
<li
v-for="(item, index) in goodsTool"
:key="index"
@click="orderBy(item.en, index)"
>
<span :class="{ 'goods-list-tool-active': index === sortIndex }"
>{{ item.title }}<Icon type="ios-arrow-round-down"
/></span>
</li>
<li @click="orderBy('price', 5, 'up')" class="price-sort">
<span :class="{ 'goods-list-tool-active': 5 === sortIndex }">
价格
<div>
<Icon
type="md-arrow-dropup"
:class="{ 'price-color': sortPriceIndex == 'desc' }"
/>
<Icon
type="md-arrow-dropdown"
:class="{ 'price-color': sortPriceIndex == 'asc' }"
/>
</div>
</span>
</li>
</ul>
</div>
<!-- 列表 -->
<div class="goods-list">
<empty v-if="goodsList.length === 0" />
<div
v-else
class="goods-show-info"
v-for="(item, index) in goodsList"
:key="index"
@click="goGoodsDetail(item.id, item.goodsId)"
>
<div class="goods-show-img">
<img width="220" height="220" :src="item.thumbnail" />
</div>
<div class="goods-show-price">
<span>
<span class="seckill-price text-danger">{{
item.price | unitPrice("¥")
}}</span>
</span>
</div>
<div class="goods-show-detail">
<span>{{ item.goodsName }}</span>
</div>
<div class="goods-show-num">
已有<span>{{ item.commentNum || 0 }}</span
>人评价
</div>
<div class="goods-show-seller">
<Tag v-if="item.selfOperated" style="padding:0 4px;" size="default" color="error"></Tag><span>{{ item.storeName }}</span>
2021-05-13 10:56:04 +08:00
</div>
</div>
</div>
</div>
</div>
<div class="goods-page">
<Page
2021-07-31 09:49:17 +08:00
show-total
2021-05-13 10:56:04 +08:00
show-sizer
@on-change="changePageNum"
@on-page-size-change="changePageSize"
:total="total"
:page-size="params.pageSize"
></Page>
</div>
</div>
<Spin size="large" fix v-if="loading"></Spin>
<BaseFooter></BaseFooter>
</div>
</template>
<script>
import GoodsClassNav from '@/components/nav/GoodsClassNav';
import * as apiGoods from '@/api/goods';
export default {
name: 'GoodsList',
beforeRouteEnter (to, from, next) {
window.scrollTo(0, 0);
next();
},
data () {
return {
2021-05-13 11:35:57 +08:00
sortIndex: 0, // 排序状态
2021-05-13 10:56:04 +08:00
sortPriceIndex: false, // 判断价格升序还是降序
2021-05-13 11:35:57 +08:00
goodsTool: [ // 排序类型
2021-05-13 10:56:04 +08:00
{ title: '综合', en: '' },
{ title: '销量', en: 'buyCount' },
{ title: '评论数', en: 'commentNum' },
{ title: '新品', en: 'releaseTime' }
],
2021-05-13 11:35:57 +08:00
goodsList: [], // 商品列表
loading: false, // 加载状态
total: 0, // 列表总数
params: { // 请求参数
2021-05-13 10:56:04 +08:00
pageNumber: 0,
pageSize: 20,
categoryId: ''
}
};
},
watch: {
$route () {
const keyword = this.$route.query.keyword
this.handleSearch(keyword)
}
},
methods: {
2021-07-31 09:49:17 +08:00
// 搜索
2021-05-13 10:56:04 +08:00
handleSearch (key) {
this.params.keyword = key
this.params.pageNumber = 0
this.getGoodsList()
},
orderBy (data, index) {
// 排序
this.sortIndex = index;
this.params.sort = data;
this.params.order = 'desc';
if (data === 'price') {
if (!this.sortPriceIndex) {
this.sortPriceIndex = 'asc';
} else {
this.sortPriceIndex === 'desc' ? (this.sortPriceIndex = 'asc') : (this.sortPriceIndex = 'desc');
}
this.params.order = this.sortPriceIndex
} else {
this.sortPriceIndex = false
}
this.getGoodsList();
},
goGoodsDetail (skuId, goodsId) {
// 跳转商品详情
let routeUrl = this.$router.resolve({
path: '/goodsDetail',
query: { skuId, goodsId }
});
window.open(routeUrl.href, '_blank');
},
2021-07-31 09:49:17 +08:00
// 分页 修改页码
2021-05-13 10:56:04 +08:00
changePageNum (val) {
2021-05-21 10:24:56 +08:00
this.params.pageNumber = val;
2021-05-13 10:56:04 +08:00
this.getGoodsList();
},
2021-07-31 09:49:17 +08:00
// 分页 修改页数
2021-05-13 10:56:04 +08:00
changePageSize (val) {
2021-05-21 10:24:56 +08:00
this.params.pageNumber = 1;
2021-05-13 10:56:04 +08:00
this.params.pageSize = val;
this.getGoodsList();
},
2021-07-31 09:49:17 +08:00
// 获取商品列表
2021-05-13 10:56:04 +08:00
getGoodsList () {
this.loading = true;
apiGoods.goodsList(this.params)
.then((res) => {
this.loading = false;
if (res.success) {
2021-05-13 10:56:04 +08:00
this.goodsList = res.result.content;
this.total = res.result.totalElements;
}
}).catch(() => {
this.loading = false;
});
},
getParams (val) {
// 筛选条件回显
Object.assign(this.params, val)
this.getGoodsList()
}
},
created () {
if (this.$route.query.categoryId) {
let cateId = this.$route.query.categoryId.split(',')
Object.assign(this.params, this.$route.query)
this.params.categoryId = cateId[cateId.length - 1]
} else {
Object.assign(this.params, this.$route.query)
}
this.getGoodsList()
},
components: {
GoodsClassNav
}
};
</script>
<style scoped lang="scss">
@import '../assets/styles/goodsList.scss';
.container {
margin: 15px auto;
width: 1200px;
min-width: 1000px;
position: relative;
}
.goods-box {
display: flex;
}
/* ---------------侧边广告栏开始------------------- */
.as-box {
width: 200px;
border: 1px solid #ccc;
}
.item-as-title {
width: 100%;
height: 36px;
color: $theme_color;
line-height: 36px;
font-size: 18px;
}
.item-as-title span:first-child {
margin-left: 20px;
}
.item-as-title span:last-child {
float: right;
margin-right: 15px;
font-size: 10px;
color: #ccc;
}
.item-as {
width: 160px;
margin: 18px auto;
}
.item-as-img {
width: 160px;
height: 160px;
margin: 0px auto;
}
.item-as-price span {
font-size: 18px;
}
.item-as-intro {
margin-top: 5px;
font-size: 12px;
}
.item-as-selled {
margin-top: 5px;
font-size: 12px;
}
.item-as-selled span {
color: #005aa0;
}
/* ---------------侧边广告栏结束------------------- */
/* ---------------商品栏开始------------------- */
.goods-list-box {
position: relative;
width: 100%;
// margin-left: 15px;
// width: calc(100% - 215px);
}
.goods-list-tool {
width: 100%;
height: 38px;
border: 1px solid #ccc;
background-color: #f1f1f1;
}
.goods-list-tool ul {
padding-left: 15px;
font-size: 12px;
margin-top: 10px;
&::after {
content: "";
display: block;
clear: left;
}
.price-sort {
span {
display: inline-block;
vertical-align: middle;
width: 50px;
height: 22px;
position: relative;
line-height: 15px;
top: -2px;
left: 0;
}
span > div {
display: inline-block;
.ivu-icon {
font-size: 12px;
position: absolute;
&:nth-child(1) {
top: 1px;
}
&:nth-child(2) {
top: 7px;
}
}
.price-color {
color: #b3b3b3;
}
}
}
}
.goods-list-tool li {
cursor: pointer;
float: left;
}
.goods-list-tool span {
padding: 3px 5px;
border: 1px solid #ccc;
margin-left: -1px;
background-color: #fff;
}
.goods-list-tool span:hover {
border-color: $theme_color;
position: relative;
text-decoration: none;
z-index: 1;
}
.goods-list-tool .ivu-icon {
font-weight: bold;
font-size: 16px;
}
.goods-list-tool-active {
color: #fff;
border-left: 1px solid #ccc;
background-color: $theme_color !important;
}
/* ---------------商品栏结束------------------- */
</style>