修改UI对齐

dev
陈博文 3 years ago
parent 13e9c7438e
commit cb259fee0a

@ -1,6 +1,11 @@
.page { .page {
background-color: #fff; background-color: #fff;
padding: 40px 118px; padding: 40px 0;
.wrap {
width: 1200px;
margin: 0 auto;
}
sup { sup {
color: red; color: red;

@ -133,6 +133,7 @@ const Page: FC<PageProps> = ({ basic, dispatch }) => {
return ( return (
<div className={styles.page}> <div className={styles.page}>
<div className={styles.wrap}>
<div className={styles.name}> <div className={styles.name}>
{' '} {' '}
<b /> <span></span> <b /> <span></span>
@ -214,7 +215,9 @@ const Page: FC<PageProps> = ({ basic, dispatch }) => {
<div className={styles.box3}> <div className={styles.box3}>
<Button <Button
onClick={uploadFile} onClick={uploadFile}
disabled={!(file1?.file && file2?.file && file3?.file && file4?.file)} disabled={
!(file1?.file && file2?.file && file3?.file && file4?.file)
}
type="primary" type="primary"
> >
@ -309,6 +312,7 @@ const Page: FC<PageProps> = ({ basic, dispatch }) => {
</Button> </Button>
</div> </div>
</div>
); );
}; };
export default connect(({ basic }: { basic: BasicInfoModelState }) => ({ export default connect(({ basic }: { basic: BasicInfoModelState }) => ({

Loading…
Cancel
Save