3.10 工程代码同步master

This commit is contained in:
jl-zhoujl2
2022-03-10 14:24:13 +08:00
parent 41ab55a4ac
commit 62f6b07ee2
914 changed files with 143121 additions and 29110 deletions

View File

@ -0,0 +1,48 @@
import React from 'react';
import { Button, Modal } from 'antd';
interface CommitmentModalProps {
modalVisible: boolean;
onCancel: () => void;
}
const modalHeight = (window.innerHeight * 96) / 100;
const CommitmentModal: React.FC<CommitmentModalProps> = (props) => {
const { modalVisible, onCancel } = props;
return (
<Modal
destroyOnClose
visible={modalVisible}
onCancel={() => onCancel()}
title="评标专家承诺书"
width={'60%'}
style={{ maxHeight: modalHeight }}
bodyStyle={{ maxHeight: modalHeight - 107, overflowY: 'auto',padding: '0px 24px 24px' }}
centered
footer={[<Button onClick={() => onCancel()}></Button>]}
>
<div style={{textAlign: 'center'}}>
<h3 style={{ fontSize: 24, fontWeight: 600,lineHeight: '88px'}}></h3>
<p style={{textAlign: 'left'}}>
<p className="CM_span"></p><br />
<p className="CM_span"></p><br />
<p className="CM_span"></p><br />
<p className="CM_span"></p><br />
<p className="CM_span"></p><br />
<p className="CM_span"> </p><br />
<p className="CM_span"></p><br />
<p className="CM_span"></p><br />
<p className="CM_span"> </p><br />
<p className="CM_span">(1)</p><br />
<p className="CM_span">(2)</p><br />
<p className="CM_span">(3)</p><br />
<p className="CM_span">(4)</p><br />
</p>
</div>
</Modal>
);
};
export default CommitmentModal;