소스 검색

%小数处理

1 년 전
부모
커밋
679bc048ab
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/views/GATHER/index.vue

+ 1 - 1
src/views/GATHER/index.vue

@@ -1288,7 +1288,7 @@ export default {
         //深拷贝,而不是拷贝地址
         this.form = JSON.parse(JSON.stringify(response.data));
         this.form.feeLists.forEach((item) => {
-          if(item.funit == "%"){
+          if(item.funit == "%" && item.collCalue){
             item.collCalue = item.collCalue.toFixed(2);
           }
         })