四舍五入
用toFixed(2)有时候会没有进行大于5加1
所以用Math.round
state.cartListDiscounts = Math.round((state.cartListTotalPrice - state.memberPriceTotal * Number(state.offers.vipIfm.discount)) * 1000) / 1000
四舍五入
用toFixed(2)有时候会没有进行大于5加1
所以用Math.round
state.cartListDiscounts = Math.round((state.cartListTotalPrice - state.memberPriceTotal * Number(state.offers.vipIfm.discount)) * 1000) / 1000