商品批发优化

master
gongfuxiang 2024-10-17 16:55:27 +08:00
parent e6eec2458a
commit aaf6d82d69
3 changed files with 8 additions and 12 deletions

View File

@ -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: '¥',

View File

@ -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 {

View File

@ -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">
<!-- 售价 -->