From e883d0ea5cb3aa229357b4662e8c1e7a746da0dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=99=88=E6=98=B1=E8=BE=BE?= Date: Fri, 22 Aug 2025 17:50:01 +0800 Subject: [PATCH] =?UTF-8?q?fix(public):=E4=BF=AE=E5=A4=8D=E9=A3=8E?= =?UTF-8?q?=E9=99=A9=E5=AE=A1=E6=89=B9=E5=8E=86=E5=8F=B2=E9=A1=B5=E9=9D=A2?= =?UTF-8?q?=E7=9A=84=E5=B1=95=E7=A4=BA=E9=97=AE=E9=A2=98-=20=E5=BD=93?= =?UTF-8?q?=E6=B2=A1=E6=9C=89=E5=AE=A1=E6=89=B9=E6=84=8F=E8=A7=81=E6=97=B6?= =?UTF-8?q?=EF=BC=8C=E5=9C=A8=E6=96=87=E6=9C=AC=E5=9F=9F=E4=B8=AD=E6=98=BE?= =?UTF-8?q?=E7=A4=BA=20'-'-=20=E7=A7=BB=E9=99=A4=E4=BA=86=E5=A4=9A?= =?UTF-8?q?=E4=BD=99=E7=9A=84=E9=87=8D=E5=A4=8D=E4=BB=A3=E7=A0=81-?= =?UTF-8?q?=E4=BC=98=E5=8C=96=E4=BA=86=E5=AE=A1=E6=89=B9=E6=84=8F=E8=A7=81?= =?UTF-8?q?=E6=96=87=E6=9C=AC=E5=9F=9F=E7=9A=84=E9=80=BB=E8=BE=91=E5=A4=84?= =?UTF-8?q?=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- public/bpic_eli/risk_history.html | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/public/bpic_eli/risk_history.html b/public/bpic_eli/risk_history.html index 2983af8..23e1bf6 100644 --- a/public/bpic_eli/risk_history.html +++ b/public/bpic_eli/risk_history.html @@ -1201,10 +1201,13 @@ ) { examSelect.value = '不通过' } - - // examSelect.value =detailJson.content.content.approveInfo.approveResult examTextarea.value = detailJson.content.content.approveInfo.approveOpinion + // 如果没有 + if (!detailJson.content.content.approveInfo.approveOpinion) { + examTextarea.value = '-' + } + // examSelect.value =detailJson.content.content.approveInfo.approveResult // 根据是否有审批意见来控制修改审批意见按钮的状态 if (modifyExamButton) { @@ -1217,7 +1220,7 @@ } else { modifyExamButton.disabled = true modifyExamButton.style.opacity = '0.5' - examTextarea.value = '-' + // examTextarea.value = '-' modifyExamButton.style.cursor = 'not-allowed' } }