index.tsx 631 B

12345678910111213141516171819202122232425
  1. /*
  2. * @Author: your name
  3. * @Date: 2021-11-25 10:07:57
  4. * @LastEditTime: 2021-11-25 10:19:33
  5. * @LastEditors: Please set LastEditors
  6. * @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
  7. * @FilePath: /MedicalWisdomCheckSys/src/components/iframePage/index.tsx
  8. */
  9. const IframePage = ({url}:{url:string})=>{
  10. return (
  11. <>
  12. {
  13. url&&(
  14. <iframe id="reportFrame" src={`${url}`} width="100%" height="800px"></iframe>
  15. )
  16. }
  17. </>
  18. )
  19. }
  20. export default IframePage;