Commit 0bbaa1c2 by wuqian

添加材质价格

parent 90a1c4d0
...@@ -81,6 +81,7 @@ export interface ProductList { ...@@ -81,6 +81,7 @@ export interface ProductList {
subOrderNumber?: string subOrderNumber?: string
shopNumber?: string shopNumber?: string
material?: string material?: string
materialPrice?: number|null
count?: number count?: number
baseSku?: string baseSku?: string
erpSubOrderNumber?: string erpSubOrderNumber?: string
......
...@@ -163,6 +163,15 @@ ...@@ -163,6 +163,15 @@
item.price || '--' item.price || '--'
}}</span> }}</span>
</div> </div>
<div
v-if="item.materialPrice && item.materialPrice > 0"
class="order-list-expand_item_info_title"
>
<span class="order-list-expand_item_label">材质价格:</span>
<span class="order-list-expand_item_value">{{
item.materialPrice
}}</span>
</div>
<div class="order-list-expand_item_info_title font-bold"> <div class="order-list-expand_item_info_title font-bold">
<span class="order-list-expand_item_label">购买数:</span> <span class="order-list-expand_item_label">购买数:</span>
<span class="order-list-expand_item_value">{{ item.num || 0 }}</span> <span class="order-list-expand_item_value">{{ item.num || 0 }}</span>
......
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