This commit is contained in:
shengchanzhe 2023-08-27 22:24:37 +08:00
parent d243cd46de
commit 9fee4cae5c
5 changed files with 21 additions and 22 deletions

View File

@ -2,12 +2,12 @@
<view class="c_card">
<view class="f_card">
<view class="item" @click="navTo('/subpkg/topUp/topUp')">
<view>履约保证()</view>
<view>履约保证()</view>
<view class="price" v-if="company.deposit">{{cCount(+company.deposit)}}</view>
<view class="price" v-else>0.00</view>
</view>
<view class="item" @click="navTo('/subpkg/withdrawDeposit/withdrawDeposit')">
<view>公司收益金额()</view>
<view>公司收益金额()</view>
<view class="price" v-if="company.company_money">{{cCount(+company.company_money)}}</view>
<view class="price" v-else>0.00</view>
</view>
@ -40,18 +40,16 @@
<view class="t_title">任务名称</view>
<view class="tips">{{item.remark}}</view>
</view>
<!-- <view class="t_item">
<view class="t_item">
<view class="t_title">金额归属</view>
<view class="tips"><text v-if="item.userInfo">{{item.userInfo.nickname}}</text></view>
</view> -->
</view>
<view class="t_item">
<view class="t_title">收益来源</view>
<view class="tips">
<!-- {{current?item.remark:item.type_desc}} -->
<text v-if="item.change_type==202">{{item.type_desc}}</text>
<!-- <text v-else-if="item.change_type==203"
style="color: #ff7c32;">{{item.type_desc}}</text> -->
<text v-else="item.change_type==203">{{item.type_desc}}</text>
<text v-if="item.change_type==202" style="color: #46be61;">{{item.type_desc}}</text>
<text v-else-if="item.change_type==203" style="color: #ff7c32;">{{item.type_desc}}</text>
<text v-else="item.change_type==203">{{item.type_desc}}</text>
</view>
</view>
</view>

View File

@ -14,7 +14,7 @@
<view class="text" style="color: #ff7c32;">
<text v-if="datas.status==3" style="color: #488F00;">已完成</text>
<text v-else-if="datas.status==5" style="color: #ccc;">已关闭</text>
<block v-else-if="(datas.type==31||datas.type==32||datas.type==33)">
<block v-else-if="(datas.type==31||datas.type==32||datas.type==33||datas.type==34||datas.type==35)">
<block v-if="datas.extend&&datas.extend.informationg">
{{(datas.extend.informationg.update?datas.extend.informationg.update:0)+'/'+(datas.extend.informationg.count?datas.extend.informationg.count:0)}}
</block>

View File

@ -111,7 +111,7 @@
}
},
click(item) {
Toast('开发中')
// Toast('')
return
this.myEventList = []
this.params.page = '1'

View File

@ -31,7 +31,7 @@
<view v-if="task_id<=0">{{'管理户数: '+item.informationg_count+" "}}<u-icon
style="display: inline-block;margin-left: 10rpx;" color="white"
name="arrow-right"></u-icon></view>
<view v-else>{{'更新户数: '+item.informationg_update_count+" "}}<u-icon
<view v-else>{{'累计更新: '+item.informationg_update_count+" "}}<u-icon
style="display: inline-block;margin-left: 10rpx;" color="white"
name="arrow-right"></u-icon></view>
</view>

View File

@ -54,7 +54,7 @@
</view>
<view class="bottom" @click="navTo('/subpkg/orderDetail/orderDetail')">
<view class="item">
<view>保证金额()</view>
<view>履约保证金额()</view>
<view class="num" v-show="eyeType">{{
userInfo.deposit || 0.0
}}</view>
@ -62,9 +62,9 @@
</view>
<u-line direction="col" length="40%" color="#999999FF"></u-line>
<view class="item">
<view>收益金额()</view>
<view>个人收益金额()</view>
<view class="num" v-show="eyeType">{{
userInfo.income || 0.0
userInfo.user_money || 0.0
}}</view>
<view class="num" v-show="!eyeType">****</view>
</view>
@ -116,12 +116,12 @@
<view class="t_title">任务名称</view>
<view class="tips">{{ item.remark }}</view>
</view>
<view class="t_item">
<!-- <view class="t_item">
<view class="t_title">金额归属</view>
<view class="tips">{{
$store.state.app.userInfo.nickname
}}</view>
</view>
</view> -->
<view class="t_item">
<view class="t_title">收益来源</view>
<view class="tips">
@ -187,7 +187,7 @@
</view>
<view class="bottom">
<view class="left">
<view>收益金额()</view>
<view>个人收益金额()</view>
<view class="num">{{ item.income }}</view>
</view>
<view class="right">
@ -264,13 +264,14 @@ export default {
return this.$store.state.config.eyeType;
},
all_money(){
let str = '0.00';
let str = 0.00;
try{
this.userInfo.user_money?str=parseFloat(str)+this.userInfo.user_money:null;
this.userInfo.deposit?str=parseFloat(str)+this.userInfo.deposit:null;
this.userInfo.user_money?str=str+parseFloat(this.userInfo.user_money):0.00;
this.userInfo.deposit?str=str+parseFloat(this.userInfo.deposit):0.00;
str = str.toFixed(2);
}catch(e){
str = "0.00";
str = 0.00;
}
return str;
}