Commit f2d04a9e authored by 前端-钟卫鹏's avatar 前端-钟卫鹏

fix: 新增订单地址标签显示错误

parent e76f53a1
......@@ -25,6 +25,7 @@ export default {
'common.button.advanced.filter': '高级筛选',
'common.button.submit': '提交',
'common.button.upload': '上传文件',
'common.button.default': '默认',
/** tips */
'common.tip.save.confirm': '您还有未保存的内容,是否确定要离开?',
......
......@@ -124,7 +124,7 @@ const SelectAddress = (props: ISchemaFieldComponentProps) => {
<Col>{v.receiverName}</Col>
<Col> / </Col>
<Col>{v.phone}</Col>
{v.isDefault ? <Col style={{ marginLeft: 6 }}><Tag color='default'>{intl.formatMessage({id: 'purchaseOrder.orderCollect.theInvoiceList.type1'})}</Tag></Col> : null}
{v.isDefault ? <Col style={{ marginLeft: 6 }}><Tag color='default'>{intl.formatMessage({id: 'common.button.default'})}</Tag></Col> : null}
</Row>
<div style={{ color: '#909399' }}>{v.fullAddress}</div>
</div>
......
......@@ -131,7 +131,7 @@ const SelectAddress = (props: ISchemaFieldComponentProps) => {
<Col>{v.receiverName}</Col>
<Col> / </Col>
<Col>{v.phone}</Col>
{v.isDefault ? <Col style={{ marginLeft: 6 }}><Tag color='default'>{intl.formatMessage({id: 'purchaseOrder.orderCollect.theInvoiceList.type1'})}</Tag></Col> : null}
{v.isDefault ? <Col style={{ marginLeft: 6 }}><Tag color='default'>{intl.formatMessage({id: 'common.button.default'})}</Tag></Col> : null}
</Row>
<div style={{ color: '#909399' }}>{v.fullAddress}</div>
</div>
......
......@@ -130,7 +130,7 @@ const SelectAddress = (props: ISchemaFieldComponentProps) => {
<Col>{v.receiverName}</Col>
<Col> / </Col>
<Col>{v.phone}</Col>
{v.isDefault ? <Col style={{ marginLeft: 6 }}><Tag color='default'>{intl.formatMessage({id: 'purchaseOrder.orderCollect.theInvoiceList.type1'})}</Tag></Col> : null}
{v.isDefault ? <Col style={{ marginLeft: 6 }}><Tag color='default'>{intl.formatMessage({id: 'common.button.default'})}</Tag></Col> : null}
</Row>
<div style={{ color: '#909399' }}>{v.fullAddress}</div>
</div>
......
......@@ -127,7 +127,7 @@ const SelectAddress = (props: ISchemaFieldComponentProps) => {
<Col>{v.receiverName}</Col>
<Col> / </Col>
<Col>{v.phone}</Col>
{v.isDefault ? <Col style={{ marginLeft: 6 }}><Tag color='default'>{intl.formatMessage({id: 'purchaseOrder.orderCollect.theInvoiceList.type1'})}</Tag></Col> : null}
{v.isDefault ? <Col style={{ marginLeft: 6 }}><Tag color='default'>{intl.formatMessage({id: 'common.button.default'})}</Tag></Col> : null}
</Row>
<div style={{ color: '#909399' }}>{v.fullAddress}</div>
</div>
......
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