Commit 840e1386 authored by Sixiang_Zzb's avatar Sixiang_Zzb

住户卡详情bug处理

parent 3b6edc69
......@@ -88,27 +88,23 @@ const CardDetail = (props: any) => {
<Row gutter={8}>
<Col>Community:</Col>
<Col span={3}>{onwerDetail.communityName}</Col>
<Col span={3}>{listData.community_name}</Col>
<Col>Unit:</Col>
<Col>
{onwerDetail.buildingNumber +
' #' +
onwerDetail.floorNumber +
'-' +
onwerDetail.roomNumber}
{listData.build_number + ' #' + listData.floor_number + '-' + listData.room_number}
</Col>
</Row>
<Row gutter={8} style={{ marginTop: 16 }}>
<Col>Address:</Col>
<Col>{onwerDetail.addressAndpostalCode}</Col>
<Col>{listData.zip_address + ' ' + listData.zip_code}</Col>
</Row>
<Row gutter={8} style={{ marginTop: 16 }}>
<Col>Owner Name:</Col>
<Col span={3}>{onwerDetail.owerName}</Col>
<Col span={3}>{listData.community_owner}</Col>
<Col>Phone:</Col>
<Col>{onwerDetail.owerPhone}</Col>
<Col>{listData.community_owner_phone}</Col>
</Row>
<Line></Line>
<Row gutter={8} style={{ marginTop: 16 }}>
......
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