parent
7a51a7e6fa
commit
ef8cad578a
|
|
@ -1040,11 +1040,11 @@ button[disabled].bg-gray {
|
|||
|
||||
.goods-data-grid-list .item .error-msg,
|
||||
.goods-data-grid-list .item .goods-img {
|
||||
height: 380rpx !important;
|
||||
height: 341rpx !important;
|
||||
}
|
||||
|
||||
.goods-data-grid-list .item .error-msg {
|
||||
line-height: 380rpx;
|
||||
line-height: 341rpx;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -102,7 +102,7 @@
|
|||
<image :src="common_static_url+'cart-empty.png'" mode="widthFix" class="margin-bottom-lg"></image>
|
||||
<view class="cr-grey text-size-sm">{{data_list_loding_msg || '购物车空空如也'}}</view>
|
||||
<navigator class="dis-inline-block" :url="home_page_url" open-type="switchTab" hover-class="none">
|
||||
<button class="bg-main br-main cr-white text-size round margin-top-xxl" type="default" size="mini" hover-class="none">去逛逛</button>
|
||||
<button class="bg-main br-main cr-white text-size-md round margin-top-xxl" type="default" size="mini" hover-class="none">去逛逛</button>
|
||||
</navigator>
|
||||
</view>
|
||||
|
||||
|
|
@ -116,9 +116,9 @@
|
|||
|
||||
<!-- 猜你喜欢 -->
|
||||
<view v-if="goods_list.length > 0" class="padding-horizontal-main tc">
|
||||
<view class="guess-like">猜你喜欢</view>
|
||||
<component-goods-list :propData="{style_type: 1, goods_list: goods_list, random: random_value}" :propLabel="plugins_label_data" :propCurrencySymbol="currency_symbol"
|
||||
:propIsCartParaCurve="true" propSource="index"></component-goods-list>
|
||||
<view class="guess-like fw-b text-size-md">猜你喜欢</view>
|
||||
<component-goods-list class="padding-top-main" :propData="{style_type: 1, goods_list: goods_list, random: random_value}" :propLabel="plugins_label_data"
|
||||
:propCurrencySymbol="currency_symbol" :propIsCartParaCurve="true" propSource="index"></component-goods-list>
|
||||
</view>
|
||||
<!-- 结尾 -->
|
||||
<component-bottom-line :propStatus="goods_bottom_line_status"></component-bottom-line>
|
||||
|
|
@ -852,7 +852,7 @@
|
|||
* 空购物车
|
||||
*/
|
||||
.cart-no-data-box {
|
||||
padding: 30% 0 40rpx 0;
|
||||
padding: 100rpx 0 40rpx 0;
|
||||
}
|
||||
|
||||
.cart-no-data-box image {
|
||||
|
|
@ -931,7 +931,6 @@
|
|||
position: relative;
|
||||
text-align: center;
|
||||
display: inline-block;
|
||||
padding-bottom: 24rpx;
|
||||
}
|
||||
|
||||
.guess-like::before,
|
||||
|
|
|
|||
|
|
@ -59,7 +59,7 @@
|
|||
<view v-for="(item, index) in data.goods_list" :key="index" class="item oh border-radius-main bg-white oh pr spacing-mb">
|
||||
<!-- 商品主体内容 -->
|
||||
<view class="cp" :data-value="item.goods_url" @tap="url_event">
|
||||
<image class="goods-img dis-block wh-auto" :src="item.images" mode="aspectFit"></image>
|
||||
<image class="goods-img dis-block wh-auto" :src="item.images" mode="scaleToFill"></image>
|
||||
<view v-if="(item.is_error || 0) == 1" class="error-msg pa cr-gray tc radius wh-auto">{{item.error_msg}}</view>
|
||||
<view class="base padding-horizontal-main margin-top-sm">
|
||||
<view class="goods-title multi-text">{{item.title}}</view>
|
||||
|
|
@ -167,7 +167,7 @@
|
|||
return {
|
||||
data: null,
|
||||
is_show_cart: false,
|
||||
themeColor: app.globalData.get_theme_color()
|
||||
themeColor: app.globalData.get_theme_color(),
|
||||
};
|
||||
},
|
||||
components: {
|
||||
|
|
|
|||
Loading…
Reference in New Issue