fix(mine): 拓展结余进度条问题修复

This commit is contained in:
woody 2025-06-26 10:31:47 +08:00
parent a2544cb18c
commit 7382ba3754
1 changed files with 4 additions and 4 deletions

View File

@ -90,7 +90,7 @@
<view class="yes_t">拓展结余</view>
<view
:class="
balanceProgress.leftValue != 0 &&
balanceProgress.leftValue != 0 ||
balanceProgress.rightValue != 0
? 'ju_left_bottom1'
: 'ju_left_bottom'
@ -115,7 +115,7 @@
<view class="yes_t">昨日业绩</view>
<view
:class="
awards.aNewPv != 0 && awards.bNewPv != 0
awards.aNewPv != 0 || awards.bNewPv != 0
? 'ju_left_bottom1'
: 'ju_left_bottom'
"
@ -135,7 +135,7 @@
<view class="yes_t">当月业绩</view>
<view
:class="
awards.aMonthPv != 0 && awards.bMonthPv != 0
awards.aMonthPv != 0 || awards.bMonthPv != 0
? 'ju_left_bottom1'
: 'ju_left_bottom'
"
@ -156,7 +156,7 @@
<view class="yes_t">{{ '历史业绩' }}</view>
<view
:class="
awards.aSumPv != 0 && awards.bSumPv != 0
awards.aSumPv != 0 || awards.bSumPv != 0
? 'ju_left_bottom1'
: 'ju_left_bottom'
"