Commit a238be13 authored by Sixiang_Zzb's avatar Sixiang_Zzb

租客家人注销 显示已注销文案

parent 64e50d1e
...@@ -123,7 +123,9 @@ const CardDetail = (props: any) => { ...@@ -123,7 +123,9 @@ const CardDetail = (props: any) => {
<Line /> <Line />
<Row gutter={8} style={{ marginTop: 16 }}> <Row gutter={8} style={{ marginTop: 16 }}>
<Col span={3}>Applicant:</Col> <Col span={3}>Applicant:</Col>
<Col span={3}>{listData.apply_name}</Col> <Col span={3}>
{listData.apply_name} {listData.exist === '1' && '(Canceled)'}
</Col>
<Col>Contact Details:</Col> <Col>Contact Details:</Col>
<Col span={2}>{listData.apply_name_phone}</Col> <Col span={2}>{listData.apply_name_phone}</Col>
<Col>{listData.apply_name_email}</Col> <Col>{listData.apply_name_email}</Col>
......
...@@ -123,7 +123,9 @@ const RenovationDetail = (props: any) => { ...@@ -123,7 +123,9 @@ const RenovationDetail = (props: any) => {
<Line /> <Line />
<Row gutter={8} style={{ marginTop: 16 }}> <Row gutter={8} style={{ marginTop: 16 }}>
<Col span={3}>Applicant:</Col> <Col span={3}>Applicant:</Col>
<Col span={3}>{listData.contactName}</Col> <Col span={3}>
{listData.contactName} {listData.exist === '1' && '(Canceled)'}
</Col>
<Col>Contact Details:</Col> <Col>Contact Details:</Col>
<Col span={2}>{listData.contactPhone}</Col> <Col span={2}>{listData.contactPhone}</Col>
<Col>{listData.contactEmail}</Col> <Col>{listData.contactEmail}</Col>
......
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