| import { CloseCircleOutlined, RightOutlined } from '@ant-design/icons'; |
| import { Button, Card, Result } from 'antd'; |
| import { Fragment } from 'react'; |
| import { GridContent } from '@ant-design/pro-layout'; |
| import styles from './index.less'; |
| const Content = ( |
| <Fragment> |
| <div className={styles.title}> |
| <span>您提交的内容有如下错误:</span> |
| </div> |
| <div |
| style={{ |
| marginBottom: 16, |
| }} |
| > |
| <CloseCircleOutlined |
| style={{ |
| marginRight: 8, |
| }} |
| className={styles.error_icon} |
| /> |
| <span>您的账户已被冻结</span> |
| <a |
| style={{ |
| marginLeft: 16, |
| }} |
| > |
| <span>立即解冻</span> |
| <RightOutlined /> |
| </a> |
| </div> |
| <div> |
| <CloseCircleOutlined |
| style={{ |
| marginRight: 8, |
| }} |
| className={styles.error_icon} |
| /> |
| <span>您的账户还不具备申请资格</span> |
| <a |
| style={{ |
| marginLeft: 16, |
| }} |
| > |
| <span>立即升级</span> |
| <RightOutlined /> |
| </a> |
| </div> |
| </Fragment> |
| ); |
| export default () => ( |
| <GridContent> |
| <Card bordered={false}> |
| <Result |
| status="error" |
| title="提交失败" |
| subTitle="请核对并修改以下信息后,再重新提交。" |
| extra={ |
| <Button type="primary"> |
| <span>返回修改</span> |
| </Button> |
| } |
| style={{ |
| marginTop: 48, |
| marginBottom: 16, |
| }} |
| > |
| {Content} |
| </Result> |
| </Card> |
| </GridContent> |
| ); |