Browse Source

保留两位小数改为保留一位小数

chenzhenguo 2 years ago
parent
commit
b324e4b913
1 changed files with 1 additions and 1 deletions
  1. 1 1
      dgtis-ui/src/views/system/userInfoDetails/index.vue

+ 1 - 1
dgtis-ui/src/views/system/userInfoDetails/index.vue

@@ -250,7 +250,7 @@ export default {
           }
         // 客户保单信息
           that.custInfo = response.data.custInfo;
-          that.custInfo.wjbf = (parseFloat(that.custInfo.prem)-parseFloat(that.custInfo.handedinprem)).toFixed(2);
+          that.custInfo.wjbf = (parseFloat(that.custInfo.prem)-parseFloat(that.custInfo.handedinprem)).toFixed(1);
           if(that.custInfo.wjbf == 0){
               that.custInfo.wjbf = "0.0"
           }