Commit 1c4fee6d authored by leimo's avatar leimo

Merge branch '20418order' into 'v2-220418'

详情显示地址的时候 添加判断未空的时候不显示 null See merge request linkseeks-design/pro-platform!260
parents e0692cf6 bbeba92f
......@@ -106,11 +106,11 @@ const DeliveryNoticeManageSRMDetails: React.FC = () => {
<ContentBoxItem label={info?.deliveryType === 0 ? DeliveryAddrLabel : DeliverySlefAddrLabel}>
<div>
{info?.deliverVO?.provinceName}
{info?.deliverVO?.cityName}
{info?.deliverVO?.districtName}
{info?.deliverVO?.streetName}
{info?.deliverVO?.address}
{info?.deliverVO?.provinceName??''}
{info?.deliverVO?.cityName??''}
{info?.deliverVO?.districtName??''}
{info?.deliverVO?.streetName??''}
{info?.deliverVO?.address??''}
</div>
<div>
{info?.deliverVO.phone}
......
......@@ -107,11 +107,11 @@ const DeliveryNoticeManageSRMDetails: React.FC = () => {
<ContentBoxItem label={info?.deliveryType === 0 ? DeliveryAddrLabel : DeliverySlefAddrLabel}>
<div>
{info?.deliverVO?.provinceName}
{info?.deliverVO?.cityName}
{info?.deliverVO?.districtName}
{info?.deliverVO?.streetName}
{info?.deliverVO?.address}
{info?.deliverVO?.provinceName??''}
{info?.deliverVO?.cityName??''}
{info?.deliverVO?.districtName??''}
{info?.deliverVO?.streetName??''}
{info?.deliverVO?.address??''}
</div>
<div>
{info?.deliverVO.phone}
......
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