3.9 供应商关联关系疑似违规行为

This commit is contained in:
jl-zhoujl2
2023-03-09 10:34:20 +08:00
parent 51fc9b5edf
commit 3f202700e5
15 changed files with 929 additions and 191 deletions

View File

@ -14,7 +14,7 @@ interface SupplierCommitmentProps {
const SupplierCommitment: React.FC<SupplierCommitmentProps> = (props) => {
const { projectId, callback } = props;
const { warning } = Modal;
const { Text } = Typography;
const { Text, Paragraph } = Typography;
const [time, setTime] = useState<number>(10);
const [btnLoading, setBtnLoading] = useState<boolean>(false);
const [visible, setVisible] = useState<boolean>(false);
@ -87,10 +87,18 @@ const SupplierCommitment: React.FC<SupplierCommitmentProps> = (props) => {
disabled: time !== 0,
loading: btnLoading,
}}
bodyStyle={{ padding: 40 }}
bodyStyle={{ padding: "32px 32px 18px" }}
onCancel={onCancel}
>
<Text strong style={{ fontSize: 16 }}>IPMAC地址校验MAC地址相同/</Text>
<Paragraph>
<Text strong style={{ fontSize: 16 }}></Text>
</Paragraph>
<Paragraph style={{ textIndent: "2em" }}>
<Text strong style={{ fontSize: 16 }}>1IPMAC地址校验MAC地址相同/</Text>
</Paragraph>
<Paragraph style={{ textIndent: "2em" }}>
<Text strong style={{ fontSize: 16 }}>2</Text>
</Paragraph>
</Modal>
);
};