index.tsx 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /*
  2. * @Author: your name
  3. * @Date: 2022-01-06 15:07:59
  4. * @LastEditTime: 2022-01-06 15:09:45
  5. * @LastEditors: Please set LastEditors
  6. * @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
  7. * @FilePath: /KC-MiddlePlatform/src/pages/platform/index.tsx
  8. */
  9. /*
  10. * @Author: your name
  11. * @Date: 2021-11-10 09:33:30
  12. * @LastEditTime: 2022-01-06 14:15:37
  13. * @LastEditors: Please set LastEditors
  14. * @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
  15. * @FilePath: /KC-MiddlePlatform/src/pages/index.tsx
  16. */
  17. import { useState, useEffect } from 'react';
  18. import { useModel, history } from 'umi';
  19. const IndexPage = () => {
  20. return (
  21. <div className="indexPage">
  22. PLATFORM
  23. {/* <TopBar
  24. openedTabs={openedTabs ? openedTabs : []}
  25. onTabChange={(data) => {
  26. onCurrentSystemChanged(data);
  27. }}
  28. sysList={selectableSysList}
  29. currentTab={currentOpenedTab}
  30. userPannelTabClick={(tag) => userPannelTabClick(tag)}
  31. /> */}
  32. {/* <MicroApp name='MedicalWisdomCheckSys' /> */}
  33. {/* {openedTabs && (
  34. <IframePage activedItem={currentOpenedTab} list={openedTabs} onload={onIframePageLoad} />
  35. )} */}
  36. </div>
  37. );
  38. };
  39. export default IndexPage;