index.tsx 806 B

1234567891011121314151617181920212223242526272829
  1. /*
  2. * @Author: your name
  3. * @Date: 2021-09-28 13:57:19
  4. * @LastEditTime: 2021-10-27 13:48:34
  5. * @LastEditors: Please set LastEditors
  6. * @Description: In User Settings Edit
  7. * @FilePath: /MedicalWisdomCheckSys/src/pages/KeepImprove/questionGatherAndRevise/index.tsx
  8. */
  9. import React from 'react'
  10. import MccsPageContainer from '@/components/MccsPageContainer/index';
  11. import './index.less';
  12. type QuestionGatherAndReviseProps = {}
  13. const QuestionGatherAndRevise:React.FC<QuestionGatherAndReviseProps> = ()=>{
  14. return (
  15. <MccsPageContainer>
  16. <iframe id="reportFrame" src="http://121.43.139.179:9300/webroot/ReportServer?formlet=dongyang/问题汇总.frm" width="100%" height="800px">
  17. </iframe>
  18. </MccsPageContainer>
  19. )
  20. }
  21. export default QuestionGatherAndRevise