fix(real-time): 实时奖金复购级差收益存在时才展示 bug-246
This commit is contained in:
parent
43f703de33
commit
6188a58194
|
@ -20,24 +20,29 @@
|
||||||
bonusData.settleDate || formatDate
|
bonusData.settleDate || formatDate
|
||||||
}}</text>
|
}}</text>
|
||||||
</view>
|
</view>
|
||||||
<view v-for="(label, key) in detailLabels" :key="key" class="detail-item">
|
<template v-for="(label, key) in detailLabels">
|
||||||
<template
|
<view v-if="key === 'repurRangeIncome'">
|
||||||
v-if="key === 'repurRangeIncome' && bonusData.repurRangeIncome"
|
<view
|
||||||
>
|
v-if="bonusData.repurRangeIncome"
|
||||||
|
class="detail-item"
|
||||||
|
:key="key"
|
||||||
|
>
|
||||||
|
<text class="detail-label">{{ label }}</text>
|
||||||
|
<text class="detail-value">
|
||||||
|
<text class="currency-symbol-small">¥</text>
|
||||||
|
{{ bonusData[key] || '0.00' }}
|
||||||
|
</text>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
<view v-else class="detail-item" :key="key">
|
||||||
<text class="detail-label">{{ label }}</text>
|
<text class="detail-label">{{ label }}</text>
|
||||||
<text class="detail-value">
|
<text class="detail-value">
|
||||||
<text class="currency-symbol-small">¥</text>
|
<text class="currency-symbol-small">¥</text>
|
||||||
{{ bonusData[key] || '0.00' }}
|
{{ bonusData[key] || '0.00' }}
|
||||||
</text>
|
</text>
|
||||||
</template>
|
</view>
|
||||||
<template v-else>
|
</template>
|
||||||
<text class="detail-label">{{ label }}</text>
|
|
||||||
<text class="detail-value">
|
|
||||||
<text class="currency-symbol-small">¥</text>
|
|
||||||
{{ bonusData[key] || '0.00' }}
|
|
||||||
</text>
|
|
||||||
</template>
|
|
||||||
</view>
|
|
||||||
<!-- 分割线 -->
|
<!-- 分割线 -->
|
||||||
<view class="divider"></view>
|
<view class="divider"></view>
|
||||||
<!-- 小计 -->
|
<!-- 小计 -->
|
||||||
|
|
Loading…
Reference in New Issue