Commit 4996a619 by zhuzhequan

确认

parent fed10f37
......@@ -315,7 +315,7 @@
</div>
<div class="goods-item-info">
<div class="goods-item-info-item">
<span class="goods-item-info-item-label">单价:</span>
<span class="goods-item-info-item-label">价格:</span>
<span class="goods-item-info-item-value">
{{ item.productPrice }}()
</span>
......@@ -405,6 +405,24 @@
/>
</el-icon>
</div>
<div v-if="row.status!=='TO_BE_CONFIRMED'" class="order-detail-item">
<span class="order-detail-item-label">生产端:</span>
<span class="order-detail-item-value" :title="row.productionClient">
{{ row.productionClient }}
</span>
</div>
<div v-if="row.productionClient==='JOMALL' && row.status!=='TO_BE_CONFIRMED'" class="order-detail-item">
<span class="order-detail-item-label">发货仓库:</span>
<span class="order-detail-item-value" :title="row.warehouseName">
{{ row.warehouseName }}
</span>
</div>
<div v-if="row.productionClient==='JOMALL' && row.status!=='TO_BE_CONFIRMED'" class="order-detail-item">
<span class="order-detail-item-label">物流方式:</span>
<span class="order-detail-item-value" :title="row.logisticsWayName">
{{ row.logisticsWayName }}
</span>
</div>
<div class="order-detail-item">
<span class="order-detail-item-label">收货人:</span>
<span class="order-detail-item-value" :title="row.receiverName">
......@@ -443,11 +461,17 @@
<template #price="{ row }">
<div class="order-price-box">
<div class="order-price-item">
<span class="order-price-item-label">总价:</span>
<span class="order-price-item-label">商品总价:</span>
<span class="order-price-item-value">
{{ row.totalAmount }}()
</span>
</div>
<div v-if="row.status!=='TO_BE_CONFIRMED'" class="order-price-item">
<span class="order-price-item-label">物流运费:</span>
<span class="order-price-item-value">
{{ row.payFreight }}($)
</span>
</div>
</div>
</template>
<template #time="{ row }">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment