|
@@ -129,7 +129,7 @@
|
|
<view class="withdraw-head">
|
|
<view class="withdraw-head">
|
|
<b>充电分成</b>
|
|
<b>充电分成</b>
|
|
<span class="classFFF" >
|
|
<span class="classFFF" >
|
|
- {{info.chargingProfitAmount}}元
|
|
|
|
|
|
+ {{info.chargingProfitAmount?info.chargingProfitAmount.toFixed(2):0}}元
|
|
|
|
|
|
</span>
|
|
</span>
|
|
</view>
|
|
</view>
|
|
@@ -149,14 +149,14 @@
|
|
<view class="withdraw-head">
|
|
<view class="withdraw-head">
|
|
<b>包月卡分润笔数</b>
|
|
<b>包月卡分润笔数</b>
|
|
<span class="classFFF" >
|
|
<span class="classFFF" >
|
|
- {{info.monthlyCardIncome}}笔
|
|
|
|
|
|
+ {{info.monthlyCardTotal}}笔
|
|
|
|
|
|
</span>
|
|
</span>
|
|
</view>
|
|
</view>
|
|
<view class="withdraw-head border-n">
|
|
<view class="withdraw-head border-n">
|
|
<b>包月卡收益</b>
|
|
<b>包月卡收益</b>
|
|
<span class="classFFF" >
|
|
<span class="classFFF" >
|
|
- {{info.monthlyCardTotal}}元
|
|
|
|
|
|
+ {{info.monthlyCardIncome?info.monthlyCardIncome.toFixed(2):0}}元
|
|
|
|
|
|
</span>
|
|
</span>
|
|
</view>
|
|
</view>
|
|
@@ -170,14 +170,17 @@
|
|
<view class="withdraw-head">
|
|
<view class="withdraw-head">
|
|
<b>合伙人总收入</b>
|
|
<b>合伙人总收入</b>
|
|
<span class="classFFF" >
|
|
<span class="classFFF" >
|
|
- {{info.totalIncome}}元
|
|
|
|
|
|
+ {{info.totalIncome?info.totalIncome.toFixed(2):0}}元
|
|
|
|
|
|
</span>
|
|
</span>
|
|
</view>
|
|
</view>
|
|
<view class="withdraw-head border-n">
|
|
<view class="withdraw-head border-n">
|
|
<b>合伙人总收益</b>
|
|
<b>合伙人总收益</b>
|
|
- <span class="classFFF" >
|
|
|
|
- {{info.totalProfitAmount}}元
|
|
|
|
|
|
+ <span >
|
|
|
|
+ <view class="classFFF" v-show="electricityPriceX">{{(info.chargingProfitAmount+info.monthlyCardIncome-electricityPriceX).toFixed(2)}}元</view>
|
|
|
|
+ <view class="classFFF" v-show="!electricityPriceX">自动计算出结果</view>
|
|
|
|
+
|
|
|
|
+
|
|
|
|
|
|
</span>
|
|
</span>
|
|
</view>
|
|
</view>
|
|
@@ -454,6 +457,7 @@
|
|
this.getStationList()
|
|
this.getStationList()
|
|
},
|
|
},
|
|
computed: {
|
|
computed: {
|
|
|
|
+
|
|
itemApplicationAmountSum(){
|
|
itemApplicationAmountSum(){
|
|
if (this.info.applicationAmount&&this.detailList&&this.detailList.length) {
|
|
if (this.info.applicationAmount&&this.detailList&&this.detailList.length) {
|
|
var applicationAmount=0;
|
|
var applicationAmount=0;
|