Commit bb14adcdff6dd8d09762818746ea094bcfe65b8b

Authored by 后端研发-苏明海
2 parents 4e141a35 d551c37f

Merge branch 'test' into 'qa'

Test

See merge request !1109
Showing 1 changed file with 2 additions and 2 deletions
... ... @@ -1070,9 +1070,9 @@ App({
1070 1070 var third_rate = th.data.dis_config.third_rate; // 三级比例
1071 1071  
1072 1072 if(this.globalData.userInfo.first_leader){
1073   - return parseFloat(first_money);
  1073 + return parseFloat(parseFloat(first_money).toFixed(2));
1074 1074 }else{
1075   - return parseFloat(first_money)+parseFloat(second_money)+parseFloat(third_money);
  1075 + return parseFloat((parseFloat(first_money)+parseFloat(second_money)+parseFloat(third_money)).toFixed(2));
1076 1076 }
1077 1077 }
1078 1078 }
... ...