@@ -46,7 +46,7 @@ const EditableFormItem = ({ label, dataIndex, record }) => {
return (
<Row>
<Col span={2}>
- <span className="zh-lh-32">{label}:</span>
+ <span className={['zh-lh-32','zh-text-right']}>{label}:</span>
</Col>
<Col span={22}>{cell}</Col>
</Row>
@@ -7,6 +7,7 @@ const Company = () => {
<Card bordered={false}>
<EditableFormItem label="名字" dataIndex="name" record="哈哈哈哈" />
+ <EditableFormItem label="联系人地址" dataIndex="name" record="哈哈大大的哈哈" />
</Card>
)
}