12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- /*
- * @Author: your name
- * @Date: 2022-01-06 15:07:59
- * @LastEditTime: 2022-01-06 15:09:45
- * @LastEditors: Please set LastEditors
- * @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
- * @FilePath: /KC-MiddlePlatform/src/pages/platform/index.tsx
- */
- /*
- * @Author: your name
- * @Date: 2021-11-10 09:33:30
- * @LastEditTime: 2022-01-06 14:15:37
- * @LastEditors: Please set LastEditors
- * @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
- * @FilePath: /KC-MiddlePlatform/src/pages/index.tsx
- */
- import { useState, useEffect } from 'react';
- import { useModel, history } from 'umi';
- const IndexPage = () => {
- return (
- <div className="indexPage">
- PLATFORM
- {/* <TopBar
- openedTabs={openedTabs ? openedTabs : []}
- onTabChange={(data) => {
- onCurrentSystemChanged(data);
- }}
- sysList={selectableSysList}
- currentTab={currentOpenedTab}
- userPannelTabClick={(tag) => userPannelTabClick(tag)}
- /> */}
- {/* <MicroApp name='MedicalWisdomCheckSys' /> */}
- {/* {openedTabs && (
- <IframePage activedItem={currentOpenedTab} list={openedTabs} onload={onIframePageLoad} />
- )} */}
- </div>
- );
- };
- export default IndexPage;
|