Commit 7fb24716 by linjinhong

podus添加订单来源字段

parent 7d96de8f
......@@ -1389,6 +1389,18 @@
</el-icon>
</div>
<div class="order-detail-item">
<span class="order-detail-item-label">订单来源:</span>
<span class="order-detail-item-value">
{{
row.source
? { 'jomall-erp': 'erp', 'third-party': '第三方推送' }[
row.source as 'jomall-erp' | 'third-party'
]
: ''
}}
</span>
</div>
<div class="order-detail-item">
<span class="order-detail-item-label">总克重:</span>
<span v-if="row.weight" class="order-detail-item-value">
{{ row.weight }}g
......
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