|
|
|
|
@ -142,6 +142,11 @@ const Page: FC<PageProps> = ({ basic, dispatch }) => {
|
|
|
|
|
name: '数据中心',
|
|
|
|
|
key: '1',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
icon: 'iconfont icon-jiedian',
|
|
|
|
|
name: '管理节点',
|
|
|
|
|
key: '2',
|
|
|
|
|
},
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
@ -152,7 +157,9 @@ const Page: FC<PageProps> = ({ basic, dispatch }) => {
|
|
|
|
|
key={e.key}
|
|
|
|
|
className={type === e.key ? styles.active : ''}
|
|
|
|
|
onClick={() => {
|
|
|
|
|
setType(e.key);
|
|
|
|
|
if (e.key === '1') {
|
|
|
|
|
setType(e.key);
|
|
|
|
|
}
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
<b />
|
|
|
|
|
@ -190,6 +197,7 @@ const Page: FC<PageProps> = ({ basic, dispatch }) => {
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</aside>
|
|
|
|
|
<Button type="primary">修改数据中心基本信息</Button>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<Spin spinning={loading}>
|
|
|
|
|
|