bignumber.js


npm install bignumber.js

在vue文件中引用

import BigNumber from "bignumber.js";

加法和减法

  for (let i = 0; i < list.length; i++) {
        // subWeight += Number(list[i].itemWeight);
        subWeight = BigNumber(subWeight).plus(Number(list[i].itemWeight));
      }
      // allowSubWeight = allowSubWeight - subWeight;
      allowSubWeight = new BigNumber(allowSubWeight).minus(subWeight);

 

 

 

https://www.cnblogs.com/xianfengzhike/p/9939012.html

https://www.cnblogs.com/wjs0509/p/14355453.html


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM