You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
88 lines
2.1 KiB
88 lines
2.1 KiB
4 years ago
|
---
|
||
|
order: 1
|
||
|
debug: true
|
||
|
title:
|
||
|
zh-CN: 复杂文本的情况
|
||
|
en-US: border
|
||
|
---
|
||
|
|
||
|
## zh-CN
|
||
|
|
||
|
带边框和背景颜色列表。
|
||
|
|
||
|
## en-US
|
||
|
|
||
|
Descriptions with border and background color.
|
||
|
|
||
|
```jsx
|
||
|
import { Descriptions, Badge, Table } from 'antd';
|
||
|
|
||
|
const dataSource = [
|
||
|
{
|
||
|
key: '1',
|
||
|
name: '胡彦斌',
|
||
|
age: 32,
|
||
|
address: '西湖区湖底公园1号',
|
||
|
},
|
||
|
{
|
||
|
key: '2',
|
||
|
name: '胡彦祖',
|
||
|
age: 42,
|
||
|
address: '西湖区湖底公园1号',
|
||
|
},
|
||
|
];
|
||
|
|
||
|
const columns = [
|
||
|
{
|
||
|
title: '姓名',
|
||
|
dataIndex: 'name',
|
||
|
key: 'name',
|
||
|
},
|
||
|
{
|
||
|
title: '年龄',
|
||
|
dataIndex: 'age',
|
||
|
key: 'age',
|
||
|
},
|
||
|
{
|
||
|
title: '住址',
|
||
|
dataIndex: 'address',
|
||
|
key: 'address',
|
||
|
},
|
||
|
];
|
||
|
ReactDOM.render(
|
||
|
<Descriptions title="User Info" column={2}>
|
||
|
<Descriptions.Item label="Product">Cloud Database</Descriptions.Item>
|
||
|
<Descriptions.Item label="Billing Mode">Prepaid</Descriptions.Item>
|
||
|
<Descriptions.Item label="Automatic Renewal">YES</Descriptions.Item>
|
||
|
<Descriptions.Item label="Order time">2018-04-24 18:00:00</Descriptions.Item>
|
||
|
<Descriptions.Item label="Usage Time" span={2}>
|
||
|
2019-04-24 18:00:00
|
||
|
</Descriptions.Item>
|
||
|
<Descriptions.Item label="Status" span={3}>
|
||
|
<Badge status="processing" text="Running" />
|
||
|
</Descriptions.Item>
|
||
|
<Descriptions.Item label="Negotiated Amount">$80.00</Descriptions.Item>
|
||
|
<Descriptions.Item label="Discount">$20.00</Descriptions.Item>
|
||
|
<Descriptions.Item label="Official Receipts">$60.00</Descriptions.Item>
|
||
|
<Descriptions.Item label="Config Info">
|
||
|
Data disk type: MongoDB
|
||
|
<br />
|
||
|
Database version: 3.4
|
||
|
<br />
|
||
|
Package: dds.mongo.mid
|
||
|
<br />
|
||
|
Storage space: 10 GB
|
||
|
<br />
|
||
|
Replication factor: 3
|
||
|
<br />
|
||
|
Region: East China 1<br />
|
||
|
</Descriptions.Item>
|
||
|
<Descriptions.Item label="Official Receipts">$60.00</Descriptions.Item>
|
||
|
<Descriptions.Item label="Config Info">
|
||
|
<Table size="small" pagination={false} dataSource={dataSource} columns={columns} />
|
||
|
</Descriptions.Item>
|
||
|
</Descriptions>,
|
||
|
mountNode,
|
||
|
);
|
||
|
```
|