From 394e04ba31f0822255862033b8dffef17530495c Mon Sep 17 00:00:00 2001
From: zhangyongtian <1181606322@qq.com>
Date: Fri, 13 Sep 2024 22:49:01 +0800
Subject: [PATCH] fix: 受理跳转办理页面为空白的bug
---
gz-customerSystem/src/views/register/closingReview/component/ReviewExamine.jsx | 11 ++++++-----
1 files changed, 6 insertions(+), 5 deletions(-)
diff --git a/gz-customerSystem/src/views/register/closingReview/component/ReviewExamine.jsx b/gz-customerSystem/src/views/register/closingReview/component/ReviewExamine.jsx
index 8a2b746..f25b545 100644
--- a/gz-customerSystem/src/views/register/closingReview/component/ReviewExamine.jsx
+++ b/gz-customerSystem/src/views/register/closingReview/component/ReviewExamine.jsx
@@ -58,7 +58,7 @@
value: '4'
},
]
-
+ console.log(props.id,'props.idprops.id')
useEffect(() => {
getInfoData()
getAppId()
@@ -97,7 +97,7 @@
if (!errors) {
const { file, myNoUp, ...rest } = formRef.current.getFields()
requestSubmit({
- id,
+ id: props.id,
caseId: props.caseId,
caseTaskId: props.caseTaskId,
...rest
@@ -111,7 +111,8 @@
const res = await submit(data)
if (res.type) {
$$.infoSuccess({ content: '提交成功!' });
- navigate(`/mediate/visit/visitWorkBench`) }
+ navigate(`/mediate/visit/visitWorkBench`)
+ }
}
//删除文件
@@ -141,7 +142,7 @@
</Col>
<Col span={24}>
<div><div className="title-text">结案意见</div></div>
- <div>{infoData?.windupContent || '-'}</div>
+ <div>{infoData?.auditContent || '-'}</div>
</Col>
{/* <Col span={24}>
<div><div className="title-text">是否转诉讼案件</div></div>
@@ -153,7 +154,7 @@
</Col> */}
<Col span={24}>
<div><div className="title-text">申请时间</div></div>
- <div>{infoData?.applyTime || '-'}</div>
+ <div>{$$.myTimeFormat(infoData?.applyTime, 'YYYY-MM-DD HH:mm') || '-'}</div>
</Col>
<Col span={24}>
<div><div className="title-text">申请人</div></div>
--
Gitblit v1.8.0