|
|
|
@ -57,76 +57,124 @@ |
|
|
|
|
|
|
|
|
|
<!-- 商品列表 --> |
|
|
|
|
<view class="goods-list clearfix" :class="['column-' + (showView ? '1' : '2')]"> |
|
|
|
|
<view class="goods-item" v-for="(item, index) in list.data" :key="index" |
|
|
|
|
@click="onTargetDetail(item.goods_id)"> |
|
|
|
|
<!-- 单列显示 --> |
|
|
|
|
<view v-if="showView" class="dis-flex"> |
|
|
|
|
<!-- 商品图片 --> |
|
|
|
|
<view class="goods-item-left"> |
|
|
|
|
<image class="image" :src="item.goods_image"></image> |
|
|
|
|
</view> |
|
|
|
|
<view class="goods-item-right"> |
|
|
|
|
<!-- 商品名称 --> |
|
|
|
|
<view class="goods-name"> |
|
|
|
|
<text class="twoline-hide">{{ item.goods_name }}</text> |
|
|
|
|
<view v-if="showView"> |
|
|
|
|
<view class="goods-item" v-for="(item, index) in list.data" :key="index" |
|
|
|
|
@click="onTargetDetail(item.goods_id)"> |
|
|
|
|
<!-- 单列显示 --> |
|
|
|
|
<view v-if="showView" class="dis-flex"> |
|
|
|
|
<!-- 商品图片 --> |
|
|
|
|
<view class="goods-item-left"> |
|
|
|
|
<image class="image" :src="item.goods_image"></image> |
|
|
|
|
</view> |
|
|
|
|
<view class="goods-item-desc"> |
|
|
|
|
<!-- 商品卖点 --> |
|
|
|
|
<view class="desc-selling-point dis-flex"> |
|
|
|
|
<text class="oneline-hide">{{ item.selling_point }}</text> |
|
|
|
|
</view> |
|
|
|
|
<!-- 商品销量 --> |
|
|
|
|
<view class="desc-goods-sales dis-flex"> |
|
|
|
|
<text>已售{{ item.goods_sales }}件</text> |
|
|
|
|
<view class="goods-item-right"> |
|
|
|
|
<!-- 商品名称 --> |
|
|
|
|
<view class="goods-name"> |
|
|
|
|
<text class="twoline-hide">{{ item.goods_name }}</text> |
|
|
|
|
</view> |
|
|
|
|
<!-- 商品价格 --> |
|
|
|
|
<view class="desc-footer"> |
|
|
|
|
<text |
|
|
|
|
class="price-x">¥{{ item.goods_price_min>0?Number(item.goods_price_min):'' }}</text> |
|
|
|
|
<text class="price-y col-9" |
|
|
|
|
v-if="item.line_price_min > 0">¥{{ item.line_price_min>0?Number(item.line_price_min):'' }}</text> |
|
|
|
|
<view class="goods-item-desc"> |
|
|
|
|
<!-- 商品卖点 --> |
|
|
|
|
<view class="desc-selling-point dis-flex"> |
|
|
|
|
<text class="oneline-hide">{{ item.selling_point }}</text> |
|
|
|
|
</view> |
|
|
|
|
<!-- 商品销量 --> |
|
|
|
|
<view class="desc-goods-sales dis-flex"> |
|
|
|
|
<text>已售{{ item.goods_sales }}件</text> |
|
|
|
|
</view> |
|
|
|
|
<!-- 商品价格 --> |
|
|
|
|
<view class="desc-footer"> |
|
|
|
|
<text |
|
|
|
|
class="price-x">¥{{ item.goods_price_min>0?Number(item.goods_price_min):'' }}</text> |
|
|
|
|
<text class="price-y col-9" |
|
|
|
|
v-if="item.line_price_min > 0">¥{{ item.line_price_min>0?Number(item.line_price_min):'' }}</text> |
|
|
|
|
</view> |
|
|
|
|
</view> |
|
|
|
|
</view> |
|
|
|
|
</view> |
|
|
|
|
</view> |
|
|
|
|
<!-- 多列显示 --> |
|
|
|
|
<view v-else class=""> |
|
|
|
|
<!-- 商品图片 --> |
|
|
|
|
<view class="goods-image"> |
|
|
|
|
<image class="image" mode="aspectFill" :src="item.goods_image"></image> |
|
|
|
|
</view> |
|
|
|
|
<view class="detail"> |
|
|
|
|
<!-- 商品名称 --> |
|
|
|
|
<view class="goods-name"> |
|
|
|
|
<text class="twoline-hide">{{ item.goods_name }}</text> |
|
|
|
|
</view> |
|
|
|
|
<view class="shipping"> |
|
|
|
|
包邮 |
|
|
|
|
</view> |
|
|
|
|
<view class="goodsInfo"> |
|
|
|
|
<view class="oneTip tip"> |
|
|
|
|
85英寸 |
|
|
|
|
</view> |
|
|
|
|
<view class="twoTip tip"> |
|
|
|
|
量子电视 |
|
|
|
|
</view> |
|
|
|
|
<view class="threeTip tip"> |
|
|
|
|
4K电视 |
|
|
|
|
</view> |
|
|
|
|
<view v-else> |
|
|
|
|
<u-waterfall v-model="list.data" ref="uWaterfall1"> |
|
|
|
|
<template v-slot:left="{leftList}"> |
|
|
|
|
<view class="goods-item" v-for="(item, index) in leftList" :key="index" |
|
|
|
|
@click="onTargetDetail(item.goods_id)"> |
|
|
|
|
<!-- 多列显示 --> |
|
|
|
|
<view class=""> |
|
|
|
|
<!-- 商品图片 --> |
|
|
|
|
<view class="goods-image"> |
|
|
|
|
<image class="image" mode="aspectFill" :src="item.goods_image"></image> |
|
|
|
|
</view> |
|
|
|
|
<view class="detail"> |
|
|
|
|
<!-- 商品名称 --> |
|
|
|
|
<view class="goods-name"> |
|
|
|
|
<text>{{ item.goods_name }}</text> |
|
|
|
|
</view> |
|
|
|
|
<view class="shipping"> |
|
|
|
|
包邮 |
|
|
|
|
</view> |
|
|
|
|
<view class="goodsInfo"> |
|
|
|
|
<view class="oneTip tip"> |
|
|
|
|
85英寸 |
|
|
|
|
</view> |
|
|
|
|
<view class="twoTip tip"> |
|
|
|
|
量子电视 |
|
|
|
|
</view> |
|
|
|
|
<view class="threeTip tip"> |
|
|
|
|
4K电视 |
|
|
|
|
</view> |
|
|
|
|
</view> |
|
|
|
|
<!-- 商品价格 --> |
|
|
|
|
<view class="detail-price oneline-hide"> |
|
|
|
|
<text |
|
|
|
|
class="goods-price f-30 col-m">¥{{ item.goods_price_min>0?Number(item.goods_price_min):'' }} |
|
|
|
|
<text class="delPrice">到手价</text></text> |
|
|
|
|
<text v-if="item.line_price_min > 0" |
|
|
|
|
class="line-price col-9 f-24">¥{{ item.line_price_min>0?Number(item.line_price_min):'' }}</text> |
|
|
|
|
</view> |
|
|
|
|
</view> |
|
|
|
|
</view> |
|
|
|
|
</view> |
|
|
|
|
<!-- 商品价格 --> |
|
|
|
|
<view class="detail-price oneline-hide"> |
|
|
|
|
<text |
|
|
|
|
class="goods-price f-30 col-m">¥{{ item.goods_price_min>0?Number(item.goods_price_min):'' }} |
|
|
|
|
<text class="delPrice">到手价</text></text> |
|
|
|
|
<text v-if="item.line_price_min > 0" |
|
|
|
|
class="line-price col-9 f-24">¥{{ item.line_price_min>0?Number(item.line_price_min):'' }}</text> |
|
|
|
|
</template> |
|
|
|
|
<template v-slot:right="{rightList}"> |
|
|
|
|
<view class="goods-item" v-for="(item, index) in rightList" :key="index" |
|
|
|
|
@click="onTargetDetail(item.goods_id)"> |
|
|
|
|
<!-- 多列显示 --> |
|
|
|
|
<view class=""> |
|
|
|
|
<!-- 商品图片 --> |
|
|
|
|
<view class="goods-image"> |
|
|
|
|
<image class="image" mode="aspectFill" :src="item.goods_image"></image> |
|
|
|
|
</view> |
|
|
|
|
<view class="detail"> |
|
|
|
|
<!-- 商品名称 --> |
|
|
|
|
<view class="goods-name"> |
|
|
|
|
<text>{{ item.goods_name }}</text> |
|
|
|
|
</view> |
|
|
|
|
<view class="shipping"> |
|
|
|
|
包邮 |
|
|
|
|
</view> |
|
|
|
|
<!-- <view class="goodsInfo"> |
|
|
|
|
<view class="oneTip tip"> |
|
|
|
|
85英寸 |
|
|
|
|
</view> |
|
|
|
|
<view class="twoTip tip"> |
|
|
|
|
量子电视 |
|
|
|
|
</view> |
|
|
|
|
<view class="threeTip tip"> |
|
|
|
|
4K电视 |
|
|
|
|
</view> |
|
|
|
|
</view> --> |
|
|
|
|
<!-- 商品价格 --> |
|
|
|
|
<view class="detail-price oneline-hide"> |
|
|
|
|
<text |
|
|
|
|
class="goods-price f-30 col-m">¥{{ item.goods_price_min>0?Number(item.goods_price_min):'' }} |
|
|
|
|
<text class="delPrice">到手价</text></text> |
|
|
|
|
<text v-if="item.line_price_min > 0" |
|
|
|
|
class="line-price col-9 f-24">¥{{ item.line_price_min>0?Number(item.line_price_min):'' }}</text> |
|
|
|
|
</view> |
|
|
|
|
</view> |
|
|
|
|
</view> |
|
|
|
|
</view> |
|
|
|
|
<!-- <view class="evaluate"> |
|
|
|
|
200+条评论 99%好评率 |
|
|
|
|
</view> --> |
|
|
|
|
</view> |
|
|
|
|
</view> |
|
|
|
|
</template> |
|
|
|
|
</u-waterfall> |
|
|
|
|
</view> |
|
|
|
|
<u-empty text="暂无数据显示哦~" v-if="list.data.length==0" mode="list"></u-empty> |
|
|
|
|
</view> |
|
|
|
@ -538,7 +586,7 @@ |
|
|
|
|
// 平铺显示 |
|
|
|
|
.goods-list.column-2 { |
|
|
|
|
.goods-item { |
|
|
|
|
width: 50%; |
|
|
|
|
// width: 50%; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -577,7 +625,6 @@ |
|
|
|
|
background: #fff; |
|
|
|
|
|
|
|
|
|
.goods-name { |
|
|
|
|
min-height: 68rpx; |
|
|
|
|
line-height: 1.3; |
|
|
|
|
white-space: normal; |
|
|
|
|
color: #484848; |
|
|
|
|