From c01d602bc3c3bc6d5370be9c9f5bf12795b25ee5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=99=BD=E5=B0=81=E7=BE=BD?= <2360164671@qq.com> Date: Fri, 6 Jan 2023 13:18:47 +0800 Subject: [PATCH 1/3] =?UTF-8?q?=E4=BF=AE=E6=AD=A3=E4=BA=86=E4=B8=A4?= =?UTF-8?q?=E5=A4=84bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../mine/ReimbursementDetail.tsx | 41 ++++++++++--------- .../component/ReimbursementDetailFiles.tsx | 1 + 2 files changed, 23 insertions(+), 19 deletions(-) diff --git a/src/pages/reimbursement/mine/ReimbursementDetail.tsx b/src/pages/reimbursement/mine/ReimbursementDetail.tsx index e59ddbc..569ae0c 100644 --- a/src/pages/reimbursement/mine/ReimbursementDetail.tsx +++ b/src/pages/reimbursement/mine/ReimbursementDetail.tsx @@ -92,8 +92,8 @@ function displayRawInfo(reimbursement: ReimbursementDetailModal | undefined | nu + destinationInvoice={reimbursement.reimbursementDestinationInvoice} + otherInvoices={reimbursement.invoices}/> ) @@ -155,7 +155,7 @@ function displaySteps(reimbursement: ReimbursementDetailModal | undefined | null } items.push({ // @ts-ignore - title: statusEnum2[i - 1] + "审批", + title: statusEnum2[i] + "审批", status: 'error', subTitle: approvalSteps[i].approvalTime.replace("T", " "), description: description @@ -233,11 +233,11 @@ class ReimbursementDetail extends React.Component { approve = () => { let params = {approvalOpinion: this.state.approvalOpinion} - axiosInstance.put("approval/" + this.state.reimbursement.reimbursementId.toString() + "/"+(this.state.approvalChecked?"1":"0"), params).then((res) => { + axiosInstance.put("approval/" + this.state.reimbursement.reimbursementId.toString() + "/" + (this.state.approvalChecked ? "1" : "0"), params).then((res) => { openNotification("审核成功"); this.props.closeDetail(); }).catch((err) => { - openNotification(err.response.data.msg==null?"操作失败,请稍后重试":err.response.data.msg); + openNotification(err.response.data.msg == null ? "操作失败,请稍后重试" : err.response.data.msg); console.log(err); }) } @@ -247,7 +247,7 @@ class ReimbursementDetail extends React.Component { openNotification("已终止申请"); this.props.closeDetail(); }).catch((err) => { - openNotification(err.response.data.msg==null?"操作失败,请稍后重试":err.response.data.msg); + openNotification(err.response.data.msg == null ? "操作失败,请稍后重试" : err.response.data.msg); console.log(err); }) } @@ -299,20 +299,23 @@ class ReimbursementDetail extends React.Component { this.state.reimbursement.reimbursementStatus >= 1 && this.state.reimbursement.reimbursementStatus <= 4) { return (<> -