|
|
@ -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 }) => ({
|
|
|
|