diff --git a/frontend/src/pages/social-insurance/AccountCard.tsx b/frontend/src/pages/social-insurance/AccountCard.tsx
index 2abd07a..c6b55e0 100644
--- a/frontend/src/pages/social-insurance/AccountCard.tsx
+++ b/frontend/src/pages/social-insurance/AccountCard.tsx
@@ -45,7 +45,7 @@ export function AccountCard({
medicalOrg: 9.8, medicalEmp: 2, medicalOrgExtra: 0, medicalEmpExtra: 0,
unemploymentOrg: 0.5, unemploymentEmp: 0.5,
injuryOrg: 0.2, maternityOrg: 0.8,
- baseMin: 6326, baseMax: 33891,
+ baseMin: isHousing ? 2540 : 6326, baseMax: isHousing ? 35811 : 33891,
medicalBaseMin: 0, medicalBaseMax: 0,
minWage: 0,
extraInsurances: [],
@@ -332,8 +332,8 @@ export function AccountCard({
)}
账户类型{config.accountType === 'SUPPLEMENTARY' ? '补充公积金' : '基本公积金'}
-
缴费基数下限¥{fmt(config.housingBaseMin > 0 ? config.housingBaseMin : config.baseMin)}
-
缴费基数上限¥{fmt(config.housingBaseMax > 0 ? config.housingBaseMax : config.baseMax)}
+
公积金基数下限¥{fmt(config.housingBaseMin > 0 ? config.housingBaseMin : config.baseMin)}
+
公积金基数上限¥{fmt(config.housingBaseMax > 0 ? config.housingBaseMax : config.baseMax)}
公积金(企业){config.housingOrg}%
公积金(个人){config.housingEmp}%
@@ -609,8 +609,8 @@ export function AccountCard({
从账户继承
- setNewVersion({ ...newVersion, baseMin: Number(e.target.value) })} />
- setNewVersion({ ...newVersion, baseMax: Number(e.target.value) })} />
+ setNewVersion({ ...newVersion, baseMin: Number(e.target.value) })} />
+ setNewVersion({ ...newVersion, baseMax: Number(e.target.value) })} />
{!isHousing && (
@@ -647,8 +647,6 @@ export function AccountCard({
setNewVersion({ ...newVersion, housingOrg: Number(e.target.value) })} />
setNewVersion({ ...newVersion, housingEmp: Number(e.target.value) })} />
-
-
>
) : (