Commit 3290a0d8 authored by rainbowmorel@163.com's avatar rainbowmorel@163.com

详情显示添加了 默认判断

parent 815f93f4
...@@ -106,11 +106,11 @@ const DeliveryNoticeManageSRMDetails: React.FC = () => { ...@@ -106,11 +106,11 @@ const DeliveryNoticeManageSRMDetails: React.FC = () => {
<ContentBoxItem label={info?.deliveryType === 0 ? DeliveryAddrLabel : DeliverySlefAddrLabel}> <ContentBoxItem label={info?.deliveryType === 0 ? DeliveryAddrLabel : DeliverySlefAddrLabel}>
<div> <div>
{info?.deliverVO?.provinceName} {info?.deliverVO?.provinceName??''}
{info?.deliverVO?.cityName} {info?.deliverVO?.cityName??''}
{info?.deliverVO?.districtName} {info?.deliverVO?.districtName??''}
{info?.deliverVO?.streetName} {info?.deliverVO?.streetName??''}
{info?.deliverVO?.address} {info?.deliverVO?.address??''}
</div> </div>
<div> <div>
{info?.deliverVO.phone} {info?.deliverVO.phone}
......
...@@ -107,11 +107,11 @@ const DeliveryNoticeManageSRMDetails: React.FC = () => { ...@@ -107,11 +107,11 @@ const DeliveryNoticeManageSRMDetails: React.FC = () => {
<ContentBoxItem label={info?.deliveryType === 0 ? DeliveryAddrLabel : DeliverySlefAddrLabel}> <ContentBoxItem label={info?.deliveryType === 0 ? DeliveryAddrLabel : DeliverySlefAddrLabel}>
<div> <div>
{info?.deliverVO?.provinceName} {info?.deliverVO?.provinceName??''}
{info?.deliverVO?.cityName} {info?.deliverVO?.cityName??''}
{info?.deliverVO?.districtName} {info?.deliverVO?.districtName??''}
{info?.deliverVO?.streetName} {info?.deliverVO?.streetName??''}
{info?.deliverVO?.address} {info?.deliverVO?.address??''}
</div> </div>
<div> <div>
{info?.deliverVO.phone} {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