mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-04 08:59:40 +08:00
7fd093bd0a
* docs: add general components TS demo * docs: add layout components TS demo * docs: add navigation components TS demo * docs: add data entry components TS demo * chore(deps): add types for qs * docs: add data display TS demo * docs: add feedback components TS demo * docs: add other components TS demo * chore(deps): add types * docs: unified demo code style * docs: fix lint error * docs: add demo TS type * docs: fix demo TS type * test: update snapshot * docs: fix TS demo * feat: update Rate character type * docs: fix lint error * feat: update Rate character type * feat: update Rate character type
53 lines
1.4 KiB
Markdown
53 lines
1.4 KiB
Markdown
---
|
|
order: 1
|
|
title:
|
|
zh-CN: 带边框的
|
|
en-US: border
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
带边框和背景颜色列表。
|
|
|
|
## en-US
|
|
|
|
Descriptions with border and background color.
|
|
|
|
```tsx
|
|
import React from 'react';
|
|
import { Descriptions, Badge } from 'antd';
|
|
|
|
const App: React.FC = () => (
|
|
<Descriptions title="User Info" bordered>
|
|
<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>
|
|
);
|
|
|
|
export default App;
|
|
```
|