--- category: Components group: 数据展示 title: Descriptions subtitle: 描述列表 description: 展示多个只读字段的组合。 cover: https://mdn.alipayobjects.com/huamei_7uahnr/afts/img/A*fHdlTpif6XQAAAAAAAAAAAAADrJ8AQ/original coverDark: https://mdn.alipayobjects.com/huamei_7uahnr/afts/img/A*d27AQJrowGAAAAAAAAAAAAAADrJ8AQ/original --- ## 何时使用 常见于详情页的信息展示。 ```tsx | pure // >= 5.8.0 可用,推荐的写法 ✅ const items: DescriptionsProps['items'] = [ { key: '1', label: 'UserName', children:
Zhou Maomao
, }, { key: '2', label: 'Telephone', children:1810000000
, }, { key: '3', label: 'Live', children:Hangzhou, Zhejiang
, }, { key: '4', label: 'Remark', children:empty
, }, { key: '5', label: 'Address', children:No. 18, Wantang Road, Xihu District, Hangzhou, Zhejiang, China
, }, ];基本
带边框的
复杂文本的情况
间距
自定义尺寸
响应式
垂直
垂直带边框的
自定义 label & wrapper 样式
JSX demo
组件 Token
## API
通用属性参考:[通用属性](/docs/react/common-props)
### Descriptions
| 参数 | 说明 | 类型 | 默认值 | 版本 |
| --- | --- | --- | --- | --- |
| bordered | 是否展示边框 | boolean | false | |
| colon | 配置 `Descriptions.Item` 的 `colon` 的默认值。表示是否显示 label 后面的冒号 | boolean | true | |
| column | 一行的 `DescriptionItems` 数量,可以写成像素值或支持响应式的对象写法 `{ xs: 8, sm: 16, md: 24}` | number \| [Record