|
|
@ -48,14 +48,15 @@ |
|
|
<view class="goods-header"> |
|
|
<view class="goods-header"> |
|
|
<view class="brand-tag">{{currentGoods.category || '品种'}}</view> |
|
|
<view class="brand-tag">{{currentGoods.category || '品种'}}</view> |
|
|
<text class="goods-name">{{currentGoods.productName || currentGoods.name || '商品'}}</text> |
|
|
<text class="goods-name">{{currentGoods.productName || currentGoods.name || '商品'}}</text> |
|
|
<view class="status-badge" style="color: {{currentGoods.status === 'published' ? '#10B981' : '#666666'}}">{{currentGoods.status === 'published' ? '在售' : currentGoods.status === 'sold_out' ? '售罄' : '未知'}}</view> |
|
|
<view class="status-badge" style="color: {{currentGoods.status === 'published' ? '#10B981' : currentGoods.status === 'sold_out' ? '#FF4D4F' : '#666666'}}">{{currentGoods.status === 'published' ? '在售' : currentGoods.status === 'sold_out' ? '售罄' : '未知'}}</view> |
|
|
<view class="price-container"> |
|
|
<view class="price-container"> |
|
|
<text class="currency-symbol" style="color: {{currentGoods.priceDiff > 0 ? '#FF4D4F' : currentGoods.priceDiff < 0 ? '#10B981' : '#666666'}}">¥</text> |
|
|
<text class="price-amount" style="color: {{currentGoods.priceDiff > 0 ? '#FF4D4F' : currentGoods.priceDiff < 0 ? '#10B981' : '#666666'}}">{{currentGoods.price}}元{{currentGoods.price > 10 ? '' : '/'}}</text> |
|
|
<text class="price-amount" style="color: {{currentGoods.priceDiff > 0 ? '#FF4D4F' : currentGoods.priceDiff < 0 ? '#10B981' : '#666666'}}">{{currentGoods.price}}</text> |
|
|
<text wx:if="{{currentGoods.unitPrice}}" class="unit-price"> |
|
|
<text wx:if="{{currentGoods.unitPrice}}" class="unit-price">件价: ¥{{currentGoods.unitPrice}}</text> |
|
|
{{currentGoods.unitPrice}}元(件价) |
|
|
|
|
|
</text> |
|
|
</view> |
|
|
</view> |
|
|
</view> |
|
|
</view> |
|
|
<text class="spec-info">{{currentGoods.specification || selectedSpec || '净重43-44g'}} | {{currentGoods.category || '绿壳'}} | 库存:{{currentGoods.totalStock || '450'}}</text> |
|
|
<text class="spec-info">{{currentGoods.specification || selectedSpec || '净重43-44g'}} | {{currentGoods.category || '绿壳'}} | {{currentGoods.yolk || '蛋黄颜色'}} | 库存:{{currentGoods.totalStock || '450'}}</text> |
|
|
<view class="merchant-info"> |
|
|
<view class="merchant-info"> |
|
|
<view class="merchant-left"> |
|
|
<view class="merchant-left"> |
|
|
<text class="merchant-icon">🏪</text> |
|
|
<text class="merchant-icon">🏪</text> |
|
|
@ -90,11 +91,12 @@ |
|
|
<view class="compare-item-header"> |
|
|
<view class="compare-item-header"> |
|
|
<view class="brand-tag">{{item.category || '品种'}}</view> |
|
|
<view class="brand-tag">{{item.category || '品种'}}</view> |
|
|
<text class="compare-item-name">{{item.productName || item.name}}</text> |
|
|
<text class="compare-item-name">{{item.productName || item.name}}</text> |
|
|
<view class="status-badge" style="color: {{item.status === 'published' ? '#10B981' : '#666666'}}">{{item.status === 'published' ? '在售' : item.status === 'sold_out' ? '售罄' : '未知'}}</view> |
|
|
<view class="status-badge" style="color: {{item.status === 'published' ? '#10B981' : item.status === 'sold_out' ? '#FF4D4F' : '#666666'}}">{{item.status === 'published' ? '在售' : item.status === 'sold_out' ? '售罄' : '未知'}}</view> |
|
|
<view class="compare-item-price"> |
|
|
<view class="compare-item-price"> |
|
|
<text class="currency-symbol" style="color: {{item.priceDiff > 0 ? '#FF4D4F' : item.priceDiff < 0 ? '#10B981' : '#666666'}}">¥</text> |
|
|
<text class="compare-price-amount" style="color: {{item.priceDiff > 0 ? '#FF4D4F' : item.priceDiff < 0 ? '#10B981' : '#666666'}}">{{item.price}}元{{item.price > 10 ? '' : '/'}}</text> |
|
|
<text class="compare-price-amount" style="color: {{item.priceDiff > 0 ? '#FF4D4F' : item.priceDiff < 0 ? '#10B981' : '#666666'}}">{{item.price}}</text> |
|
|
<text wx:if="{{item.unitPrice}}" class="unit-price"> |
|
|
<text wx:if="{{item.unitPrice}}" class="unit-price">件价: ¥{{item.unitPrice}}</text> |
|
|
{{item.unitPrice}}元(件价) |
|
|
|
|
|
</text> |
|
|
</view> |
|
|
</view> |
|
|
</view> |
|
|
</view> |
|
|
<text class="compare-item-spec">{{item.currentSpec || item.specification || (item.processedSpecs && item.processedSpecs.length > 0 ? item.processedSpecs.join(' | ') : '净重:45-50g')}} | {{item.category || '品种'}} | {{item.yolk || '无'}} | 库存:{{item.totalStock || '450'}}</text> |
|
|
<text class="compare-item-spec">{{item.currentSpec || item.specification || (item.processedSpecs && item.processedSpecs.length > 0 ? item.processedSpecs.join(' | ') : '净重:45-50g')}} | {{item.category || '品种'}} | {{item.yolk || '无'}} | 库存:{{item.totalStock || '450'}}</text> |
|
|
|