Vue安装math.js封装并使用

1.安装
cnpm install mathjs --save
2.新建math.js文件 
const $math = require('mathjs')  
PS:最新版本的引入方法可能不一样
export const math = {
  add () {
    return comp('add', arguments)
  },
  subtract () {
    return comp('subtract', arguments)
  },
  multiply () {
    return comp('multiply', arguments)
  },
  divide () {
    return comp('divide', arguments)
  }
}

function comp (_func, args) {
  let t = $math.chain($math.bignumber(args[0]))
  for (let i = 1; i < args.length; i++) {
    t = t[_func]($math.bignumber(args[i]))
  }
  // 防止超过6位使用科学计数法
  return parseFloat(t.done())
}

3.页面引入
import { math } from '@/utils/math.js'

除法
     this.customerPrice = math.subtract(this.interestRate, this.oldRate)
乘法
    this.customerPrice = math.multiply(this.customerPrice, 100)
加法
    this.customerPrice = math.add(this.customerPrice, 100)
减法
    this.customerPrice = math.divide(this.customerPrice, 100)
取决于math.js文件里面的命名,PS:中间是逗号

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值