From f9eb7b9a1d30ea8d66830add6627da13ff54ab8c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=BB=8E=E6=B0=B8=E9=A1=BA?= <971387674@qq.com> Date: Fri, 7 Apr 2023 17:27:20 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BA=A7=E5=93=81=E8=96=AA=E8=B5=84=E8=B4=A6?= =?UTF-8?q?=E5=A5=97-=E7=A4=BE=E4=BF=9D=E7=A6=8F=E5=88=A9=E5=8F=B0?= =?UTF-8?q?=E8=B4=A6=E6=A0=B8=E7=AE=97=E6=80=BB=E8=AE=A1=E8=A1=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../standingBookDetail/components/normal.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pc4mobx/hrmSalary/pages/socialSecurityBenefits/standingBookDetail/components/normal.js b/pc4mobx/hrmSalary/pages/socialSecurityBenefits/standingBookDetail/components/normal.js index e10d3591..9f67ea87 100644 --- a/pc4mobx/hrmSalary/pages/socialSecurityBenefits/standingBookDetail/components/normal.js +++ b/pc4mobx/hrmSalary/pages/socialSecurityBenefits/standingBookDetail/components/normal.js @@ -116,12 +116,14 @@ export default class NormalIndex extends Component { }; siaccountDetailCommonListSum = () => { const { searchValue: userName } = this.state; - const { billMonth, paymentOrganization } = this.props; + const billMonth = getQueryString("billMonth"); + const paymentOrganization = getQueryString("paymentOrganization"); return siaccountDetailCommonListSum({ billMonth, paymentOrganization, userName }); }; siaccountDetailSupplementaryListSum = () => { const { searchValue: userName } = this.state; - const { billMonth, paymentOrganization } = this.props; + const billMonth = getQueryString("billMonth"); + const paymentOrganization = getQueryString("paymentOrganization"); return siaccountDetailSupplementaryListSum({ billMonth, paymentOrganization, userName }); };