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 }); };