Commit b7a6b4bb authored by cellee's avatar cellee

Merge branch 'final' of http://120.77.240.215:9701/Maple/tostumi.git into final

parents 67c11eeb a238be13
......@@ -123,7 +123,9 @@ const CardDetail = (props: any) => {
<Line />
<Row gutter={8} style={{ marginTop: 16 }}>
<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 span={2}>{listData.apply_name_phone}</Col>
<Col>{listData.apply_name_email}</Col>
......
......@@ -123,7 +123,9 @@ const RenovationDetail = (props: any) => {
<Line />
<Row gutter={8} style={{ marginTop: 16 }}>
<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 span={2}>{listData.contactPhone}</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