Commit 6c040fc7 by wuqian

客户高亮

parent caafaa17
...@@ -15,6 +15,12 @@ ...@@ -15,6 +15,12 @@
o.sourceType || '--' o.sourceType || '--'
}}</span> }}</span>
</div> </div>
<div class="shipment-info-item-header--title high-light">
<span class="shipment-info-item-header__label">客户:</span>
<span class="shipment-info-item-header__value">{{
o.userMark || '--'
}}</span>
</div>
<div class="shipment-info-item-header--title"> <div class="shipment-info-item-header--title">
<span class="shipment-info-item-header__label">收货人:</span> <span class="shipment-info-item-header__label">收货人:</span>
<span class="shipment-info-item-header__value">{{ <span class="shipment-info-item-header__value">{{
...@@ -22,6 +28,32 @@ ...@@ -22,6 +28,32 @@
}}</span> }}</span>
</div> </div>
</div> </div>
<div class="shipment-info-item-header">
<div class="shipment-info-item-header--title">
<span class="shipment-info-item-header__label">区域:</span>
<span class="shipment-info-item-header__value">{{
o.lanshouRegion || '--'
}}</span>
</div>
<div class="shipment-info-item-header--title">
<span class="shipment-info-item-header__label">地址:</span>
<span class="shipment-info-item-header__value">{{
o.lanshouAddress || '--'
}}</span>
</div>
<div class="shipment-info-item-header--title">
<span class="shipment-info-item-header__label">邮编:</span>
<span class="shipment-info-item-header__value">{{
o.lanshouPost || '--'
}}</span>
</div>
<div class="shipment-info-item-header--title">
<span class="shipment-info-item-header__label">电话:</span>
<span class="shipment-info-item-header__value">{{
o.lanshouPhone || '--'
}}</span>
</div>
</div>
<div class="shipment-info-item-content"> <div class="shipment-info-item-content">
<div <div
v-for="item in o.productList" v-for="item in o.productList"
...@@ -31,7 +63,7 @@ ...@@ -31,7 +63,7 @@
'active-row': item.subOrderNumber === currentRow.subOrderNumber, 'active-row': item.subOrderNumber === currentRow.subOrderNumber,
}" }"
class="shipment-info-item-content-item" class="shipment-info-item-content-item"
@click="onRowClick(item,o)" @click="onRowClick(item, o)"
> >
<div class="image"> <div class="image">
<img :src="item.variantImage" /> <img :src="item.variantImage" />
...@@ -143,8 +175,7 @@ defineProps({ ...@@ -143,8 +175,7 @@ defineProps({
}, },
currentRow: { currentRow: {
type: Object as PropType<ProductList>, type: Object as PropType<ProductList>,
default: () => { default: () => {},
},
}, },
}) })
...@@ -223,9 +254,15 @@ const onShipment = async (item: ProductList) => { ...@@ -223,9 +254,15 @@ const onShipment = async (item: ProductList) => {
.shipment-info-item-header { .shipment-info-item-header {
display: flex; display: flex;
justify-content: space-between;
background-color: #e6e6e6; background-color: #e6e6e6;
padding: 10px; padding: 10px 0 10px 50px;
.high-light {
color: #ff0000;
font-weight: bold;
}
.shipment-info-item-header--title {
width: 25%;
}
} }
.shipment-info-item-content-item { .shipment-info-item-content-item {
......
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