-
- 社保缴纳基数
- ¥{fmt(profile.socialInsBase)}
-
-
- 公积金缴纳基数
- ¥{fmt(profile.housingFundBase || 0)}
-
-
- 个人养老(8%)
- ¥{fmt((profile.socialInsBase || 0) * 0.08)}
-
-
- 单位养老(16%)
- ¥{fmt((profile.socialInsBase || 0) * 0.16)}
-
-
- 个人医疗(2%)
- ¥{fmt((profile.socialInsBase || 0) * 0.02)}
-
-
- 单位医疗(8%)
- ¥{fmt((profile.socialInsBase || 0) * 0.08)}
-
-
- 个人失业(0.5%)
- ¥{fmt((profile.socialInsBase || 0) * 0.005)}
-
-
- 单位失业(0.5%)
- ¥{fmt((profile.socialInsBase || 0) * 0.005)}
-
-
- 单位工伤(0.2%)
- ¥{fmt((profile.socialInsBase || 0) * 0.002)}
-
-
- 单位生育(0.8%)
- ¥{fmt((profile.socialInsBase || 0) * 0.008)}
-
-
- 个人公积金(7%)
- ¥{fmt((profile.housingFundBase || 0) * 0.07)}
-
-
- 单位公积金(7%)
- ¥{fmt((profile.housingFundBase || 0) * 0.07)}
-
-
- 个人合计
- ¥{fmt((profile.socialInsBase || 0) * 0.105 + (profile.housingFundBase || 0) * 0.07)}
-
-
- 单位合计
- ¥{fmt((profile.socialInsBase || 0) * 0.255 + (profile.housingFundBase || 0) * 0.07)}
-
-