|
@@ -224,25 +224,37 @@
|
|
|
<!-- 价格查看 -->
|
|
|
<u-popup v-model="showPriceModal" mode="center" length="80%" closeable>
|
|
|
<view class="show-price-modal" v-if="tempData">
|
|
|
- <view>
|
|
|
+ <view class="itemlist">
|
|
|
<text>产品编码</text>
|
|
|
<text>{{tempData.code||'--'}}</text>
|
|
|
</view>
|
|
|
- <view v-if="tempData.productTypeSn=='543766811373752320'">
|
|
|
+ <view class="itemlist" v-if="tempData.productTypeSn=='543766811373752320'">
|
|
|
<text>原厂编码</text>
|
|
|
<text>{{tempData.origCode||'--'}}</text>
|
|
|
</view>
|
|
|
- <view>
|
|
|
+ <view class="itemlist">
|
|
|
<text>产品名称</text>
|
|
|
<text>{{tempData.name||'--'}}</text>
|
|
|
</view>
|
|
|
- <view>
|
|
|
- <text>进货价</text>
|
|
|
- <text>{{tempData.cost?'¥'+tempData.cost:'暂无价格'}}</text>
|
|
|
+ <view v-if="tempData.affiliation=='SHELF'">
|
|
|
+ <view class="itemlist" v-if="configPrice.shelf_cost_show == '1'">
|
|
|
+ <text>进货价</text>
|
|
|
+ <text>{{tempData.cost?'¥'+tempData.cost:'暂无价格'}}</text>
|
|
|
+ </view>
|
|
|
+ <view class="itemlist" v-if="configPrice.shelf_price_show == '1'">
|
|
|
+ <text>车主价</text>
|
|
|
+ <text>{{tempData.price?'¥'+tempData.price:'暂无价格'}}</text>
|
|
|
+ </view>
|
|
|
</view>
|
|
|
- <view>
|
|
|
- <text>车主价</text>
|
|
|
- <text>{{tempData.price?'¥'+tempData.price:'暂无价格'}}</text>
|
|
|
+ <view v-else>
|
|
|
+ <view class="itemlist" v-if="configPrice.non_shelf_cost_show == '1'">
|
|
|
+ <text>进货价</text>
|
|
|
+ <text>{{tempData.cost?'¥'+tempData.cost:'暂无价格'}}</text>
|
|
|
+ </view>
|
|
|
+ <view class="itemlist" v-if="configPrice.non_shelf_price_show == '1'">
|
|
|
+ <text>车主价</text>
|
|
|
+ <text>{{tempData.price?'¥'+tempData.price:'暂无价格'}}</text>
|
|
|
+ </view>
|
|
|
</view>
|
|
|
</view>
|
|
|
</u-popup>
|
|
@@ -748,7 +760,7 @@
|
|
|
}
|
|
|
.show-price-modal{
|
|
|
padding: 30px 20px;
|
|
|
- >view{
|
|
|
+ .itemlist{
|
|
|
display: flex;
|
|
|
align-items: center;
|
|
|
justify-content: space-between;
|