master_basic
鲁誉程 12 months ago
parent d9838ff2ab
commit 7528a02b12

@ -60,7 +60,6 @@ const CoreSystemEntrance: FC<PageProps> = ({ }) => {
open={visibility}
centered
width={550}
onOk={() => { }}
onCancel={() => setVisibility(false)}
footer={null}
maskClosable={false}

@ -1,10 +1,13 @@
import { FC, useEffect, useState } from 'react';
import styles from './index.less';
import { Modal } from 'antd';
import ButtonComp from '@/components/ButtonComp';
interface PageProps {
}
const PowerOnAuth: FC<PageProps> = ({ }) => {
const [visibility, setVisibility] = useState<boolean>(true);
return (
<div className={styles.con_warp}>
@ -50,6 +53,26 @@ const PowerOnAuth: FC<PageProps> = ({ }) => {
</div>
</div>
</div>
{/* 开机认证 */}
<Modal
title="开机认证"
open={visibility}
centered
width={380}
onCancel={() => setVisibility(false)}
footer={null}
maskClosable={false}
>
<div style={{ display: 'flex', justifyContent: 'center', fontSize: 16}}>
!
</div>
<div className='flex_jE mt20'>
<ButtonComp text={'确定'} onClick={() => {}} />
</div>
</Modal>
</div>
)
}

@ -86,7 +86,6 @@ export default function Page() {
open={visibility}
centered
width={500}
onOk={() => { }}
onCancel={() => setVisibility(false)}
footer={null}>
<div>

@ -46,7 +46,6 @@ export default function Page() {
open={visibility}
centered
width={500}
onOk={() => { }}
onCancel={() => setVisibility(false)}
footer={null}>
<div>

@ -69,7 +69,6 @@ export default function Page() {
open={visibility}
centered
width={1100}
onOk={() => { }}
onCancel={() => setVisibility(false)}
footer={null}>

@ -96,7 +96,6 @@ export default function Page() {
open={visibility}
centered
width={500}
onOk={() => { }}
onCancel={() => setVisibility(false)}
footer={null}>
<div>

Loading…
Cancel
Save