mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-30 06:09:34 +08:00
70 lines
1.4 KiB
Markdown
70 lines
1.4 KiB
Markdown
---
|
|
order: 7
|
|
title:
|
|
zh-CN: Error
|
|
en-US: Error
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
复杂的错误反馈。
|
|
|
|
## en-US
|
|
|
|
Complex error feedback.
|
|
|
|
```jsx
|
|
import { Result, Button, Typography } from 'antd';
|
|
import { CloseCircleOutlined } from '@ant-design/icons';
|
|
|
|
const { Paragraph, Text } = Typography;
|
|
|
|
ReactDOM.render(
|
|
<Result
|
|
status="error"
|
|
title="Submission Failed"
|
|
subTitle="Please check and modify the following information before resubmitting."
|
|
extra={[
|
|
<Button type="primary" key="console">
|
|
Go Console
|
|
</Button>,
|
|
<Button key="buy">Buy Again</Button>,
|
|
]}
|
|
>
|
|
<div className="desc">
|
|
<Paragraph>
|
|
<Text
|
|
strong
|
|
style={{
|
|
fontSize: 16,
|
|
}}
|
|
>
|
|
The content you submitted has the following error:
|
|
</Text>
|
|
</Paragraph>
|
|
<Paragraph>
|
|
<CloseCircleOutlined className="site-result-demo-error-icon" /> Your account has been frozen
|
|
<a>Thaw immediately ></a>
|
|
</Paragraph>
|
|
<Paragraph>
|
|
<CloseCircleOutlined className="site-result-demo-error-icon" /> Your account is not yet
|
|
eligible to apply <a>Apply Unlock ></a>
|
|
</Paragraph>
|
|
</div>
|
|
</Result>,
|
|
mountNode,
|
|
);
|
|
```
|
|
|
|
```css
|
|
.site-result-demo-error-icon {
|
|
color: red;
|
|
}
|
|
```
|
|
|
|
<style>
|
|
[data-theme="dark"] .site-result-demo-error-icon {
|
|
color: #a61d24;
|
|
}
|
|
</style>
|