first commit

This commit is contained in:
jerryjzhang
2023-06-12 18:44:01 +08:00
commit dc4fc69b57
879 changed files with 573090 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
import { Button, Result } from 'antd';
import React from 'react';
import { history } from 'umi';
const NoAuthPage: React.FC = () => (
<Result
status="403"
title="当前页面无权限"
subTitle={1 ? '请联系项目管理员 jerryjzhang 开通权限' : '请申请加入自己业务的项目'}
extra={
<Button type="primary" onClick={() => history.push('/homepage')}>
</Button>
}
/>
);
export default NoAuthPage;