商品批发优化
parent
e6eec2458a
commit
aaf6d82d69
4
App.vue
4
App.vue
|
|
@ -25,10 +25,10 @@
|
|||
application_logo: '',
|
||||
|
||||
// 版本号、如: v1.0.0
|
||||
version: 'v6.2',
|
||||
version: 'v6.3',
|
||||
|
||||
// app版本信息、如: v1.0.0 20180118
|
||||
app_version_info: 'v6.2 20240704',
|
||||
app_version_info: 'v6.3 20241022',
|
||||
|
||||
// 货币价格符号
|
||||
currency_symbol: '¥',
|
||||
|
|
|
|||
|
|
@ -261,17 +261,17 @@
|
|||
width: 60%;
|
||||
min-height: 164rpx;
|
||||
}
|
||||
.goods-base-price-countdown .price-icon {
|
||||
.goods-base-price-countdown .price-content .price-icon {
|
||||
border-color: #fff;
|
||||
color: #fff;
|
||||
background: transparent;
|
||||
}
|
||||
.goods-base-price-countdown .sales-price,
|
||||
.goods-base-price-countdown .sales-price-unit {
|
||||
.goods-base-price-countdown .price-content .sales-price,
|
||||
.goods-base-price-countdown .price-content .sales-price-unit {
|
||||
color: #fff !important;
|
||||
}
|
||||
.goods-base-price-countdown .original-price,
|
||||
.goods-base-price-countdown .unit{
|
||||
.goods-base-price-countdown .price-content .original-price,
|
||||
.goods-base-price-countdown .price-content .unit{
|
||||
color: #ffcece !important;
|
||||
}
|
||||
.price-content .price-icon.seckill {
|
||||
|
|
|
|||
|
|
@ -76,14 +76,10 @@
|
|||
<view class="goods-base-price bg-white oh spacing-mb" :class="plugins_seckill_is_valid ? 'goods-base-price-countdown' : ''">
|
||||
<!-- 批发规则、未隐藏商品售价的时候独立行展示 -->
|
||||
<view v-if="(plugins_wholesale_data || null) != null && (plugins_wholesale_data.is_hide_goods_price || 0) != 1">
|
||||
<component-wholesale-rules :propIsPopup="true" :propCurrencySymbol="currency_symbol" :propData="plugins_wholesale_data" :propIsSeckill="plugins_seckill_is_valid"></component-wholesale-rules>
|
||||
<component-wholesale-rules :propIsPopup="true" :propCurrencySymbol="currency_symbol" :propData="plugins_wholesale_data"></component-wholesale-rules>
|
||||
</view>
|
||||
<!-- 价格 -->
|
||||
<view class="price-content padding-vertical-main padding-left-main bs-bb fl" :style="plugins_seckill_is_valid ? 'background-image: url(' + plugins_seckill_data.goods_detail_header + ')' : ''">
|
||||
<!-- 批发规则、隐藏商品售价的时候在这里展示 -->
|
||||
<view v-if="(plugins_wholesale_data || null) != null && (plugins_wholesale_data.is_hide_goods_price || 0) == 1" class="item">
|
||||
<component-wholesale-rules :propIsPopup="true" :propCurrencySymbol="currency_symbol" :propData="plugins_wholesale_data"></component-wholesale-rules>
|
||||
</view>
|
||||
<!-- 批发插件是否开启隐藏价格信息 -->
|
||||
<block v-if="(plugins_wholesale_data || null) == null || (plugins_wholesale_data.is_hide_goods_price || 0) != 1">
|
||||
<!-- 售价 -->
|
||||
|
|
|
|||
Loading…
Reference in New Issue