feat(BD、BDLeader): 对“进行中”状态的收益信息对接展示数据

This commit is contained in:
hzj 2025-11-25 11:04:53 +08:00
parent 40a0e08f9c
commit 4052c53118
2 changed files with 14 additions and 6 deletions

View File

@ -298,6 +298,8 @@
<div style="font-size: 0.9em">
{{ t('agency_number') }}: {{ income.agencyNumber || 0 }}
</div>
<!-- 团队薪资和BD薪资收益 -->
<div style="display: flex; justify-content: space-between">
<div style="font-size: 0.9em">
{{ t('team_salary') }}: ${{ income.teamSalaryAmount || 0 }}
@ -308,13 +310,15 @@
}}%)
</div>
</div>
<!-- 团队充值和BD充值收益 -->
<div style="display: flex; justify-content: space-between">
<div style="font-size: 0.9em">
{{ t('team_top_up') }}: ${{ income.teamRechargeAmount }}
{{ t('team_top_up') }}: ${{ income.teamRechargeAmount || 0 }}
</div>
<div style="font-size: 0.9em">
{{ t('bd_income_top_up') }}: ${{ income.settlementSalary || 0 }} ({{
income.commissionRate || 0
{{ t('bd_income_top_up') }}: ${{ income.bdIncomeRecharge || 0 }} ({{
income.bdRatioRecharge || 0
}}%)
</div>
</div>

View File

@ -457,6 +457,8 @@
<div style="font-size: 0.9em">
{{ t('agency_number') }}: {{ income.agencyNumber || 0 }}
</div>
<!-- 团队薪资和BD薪资收益 -->
<div style="display: flex; justify-content: space-between">
<div style="font-size: 0.9em">
{{ t('team_salary') }}: ${{ income.teamSalaryAmount || 0 }}
@ -467,13 +469,15 @@
}}%)
</div>
</div>
<!-- 团队充值和BD充值收益 -->
<div style="display: flex; justify-content: space-between">
<div style="font-size: 0.9em">
{{ t('team_top_up') }}: ${{ income.teamRechargeAmount }}
{{ t('team_top_up') }}: ${{ income.teamRechargeAmount || 0 }}
</div>
<div style="font-size: 0.9em">
{{ t('bd_income_top_up') }}: ${{ income.settlementSalary || 0 }} ({{
income.commissionRate || 0
{{ t('bd_income_top_up') }}: ${{ income.bdIncomeRecharge || 0 }} ({{
income.bdRatioRecharge || 0
}}%)
</div>
</div>