fix(mine): 拓展结余进度条问题修复
This commit is contained in:
parent
a2544cb18c
commit
7382ba3754
|
@ -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'
|
||||
"
|
||||
|
|
Loading…
Reference in New Issue