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