diff --git a/src/pages/Calibration/BidAssessmentResults/index.tsx b/src/pages/Calibration/BidAssessmentResults/index.tsx
index 19850c0..86ddda1 100644
--- a/src/pages/Calibration/BidAssessmentResults/index.tsx
+++ b/src/pages/Calibration/BidAssessmentResults/index.tsx
@@ -109,8 +109,8 @@ const BidAssessmentResults: React.FC<{}> = (props) => {
};
//确认评审结果ListRender封装
- const ResultListRender = (props: { item: any, setSpintype: (value: boolean) => void, getResultList: (record: any) => void, ListData: any, pushResult: (record: any) => void }) => {
- const { item, setSpintype, getResultList, ListData, pushResult } = props;
+ const ResultListRender = (props: { item: any, setRefresh: () => void, getResultList: (record: any) => void, ListData: any, pushResult: (record: any) => void }) => {
+ const { item, setRefresh, getResultList, ListData, pushResult } = props;
//单一来源简化
const [form] = Form.useForm();
//综合得分展开关闭
@@ -395,9 +395,8 @@ const BidAssessmentResults: React.FC<{}> = (props) => {
{
@@ -463,7 +462,7 @@ const BidAssessmentResults: React.FC<{}> = (props) => {
{ListData.map((item, index) => (
- { setSpintype(value); }} getResultList={getResultList} ListData={ListData} pushResult={pushResult} />
+ { setRefresh(Refresh + 1); }} getResultList={getResultList} ListData={ListData} pushResult={pushResult} />
))}