index.tsx
738 Bytes
import { Link } from 'umi';
import { Result, Button } from 'antd';
import { history } from '@@/core/history';
import { ArrowLeftOutlined, HomeOutlined } from '@ant-design/icons';
export default () => (
<Result
status="403"
title="403"
style={{
background: 'none',
}}
subTitle="很抱歉,您没有访问此页面的权限。"
extra={
<>
<Button
type="primary"
onClick={() => {
history.goBack();
}}
>
<ArrowLeftOutlined />
返回上一页
</Button>
<Link to="/">
<Button>
<HomeOutlined />
首页
</Button>
</Link>
</>
}
/>
);