diff --git a/src/glcc/interimReview/result.jsx b/src/glcc/interimReview/result.jsx index 985b0a3d..56efa766 100644 --- a/src/glcc/interimReview/result.jsx +++ b/src/glcc/interimReview/result.jsx @@ -13,8 +13,6 @@ const { Search } = Input; // 课题列表 function CheckResult({current_user, history, checkTime3}) { // 输入搜索框 - // 已通过 - const [pass, setPass] = useState(false); const [keyword, setKeyword] = useState(undefined); const [data, setData] = useState([]); // table @@ -37,9 +35,7 @@ function CheckResult({current_user, history, checkTime3}) { const params = { curPage: current, keyword, - pageSize, - // pass: pass? '1': '' - pass: '1' + pageSize } getMediumTermExamineInfoList(params).then(response => { if (response && response.message === "success") { @@ -51,7 +47,7 @@ function CheckResult({current_user, history, checkTime3}) { } setLoading(false); }) - }, [keyword, current, pageSize, pass]) + }, [keyword, current, pageSize]) const columns = [ { title: '序号', dataIndex: 'index', align: 'center', className:"columnsResult", width: '6%', render: (text, item, index) => {(current-1)*pageSize+index + 1} }, @@ -111,7 +107,6 @@ function CheckResult({current_user, history, checkTime3}) {