|
|
@@ -109,7 +109,7 @@
|
|
|
<view class="balance-item" @click.stop="recharge(item)" v-if="Number(item.balance) < 0">
|
|
|
<text class="balance-label">待结金额</text>
|
|
|
<text class="balance-amount negative">¥{{parseFloat(Math.abs(item.balance))}}</text>
|
|
|
- <text class="balance-action">去结账</text>
|
|
|
+ <text class="balance-action-2">去结账</text>
|
|
|
</view>
|
|
|
<view class="balance-item" @click.stop="recharge(item)" v-if="item.balance > 0">
|
|
|
<text class="balance-label">可用余额</text>
|
|
|
@@ -678,7 +678,7 @@ page {
|
|
|
}
|
|
|
|
|
|
&.positive {
|
|
|
- color: #2ed573;
|
|
|
+ color: #667eea;
|
|
|
}
|
|
|
}
|
|
|
|
|
|
@@ -688,6 +688,12 @@ page {
|
|
|
text-decoration: underline;
|
|
|
font-weight: bold;
|
|
|
}
|
|
|
+ .balance-action-2{
|
|
|
+ font-size: 28upx;
|
|
|
+ color: #ff4757;
|
|
|
+ text-decoration: underline;
|
|
|
+ font-weight: bold;
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
|