sale-client 4.4.7 → 4.4.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sale-client",
3
- "version": "4.4.7",
3
+ "version": "4.4.8",
4
4
  "description": "收费模块前台组件",
5
5
  "main": "src/index.js",
6
6
  "scripts": {
@@ -273,7 +273,7 @@
273
273
  // 如果不支持小数,将划价出的多余非整数气量进行划价为金额
274
274
  let tempnum = Math.floor(getGas.data.gas - 0)
275
275
  let dymoney1 = await self.$CommonService.gasCalculate(self.model, (tempnum).toFixed(self.row.f_fee_decimal || 4))
276
- self.dymoney = (getGas.data.chargenum - 0).toFixed(2) - (dymoney1.data.chargenum - 0).toFixed(self.row.f_fee_decimal || 4)
276
+ self.dymoney = (getGas.data.chargenum - 0).toFixed(self.row.f_fee_decimal || 4) - (dymoney1.data.chargenum - 0).toFixed(self.row.f_fee_decimal || 4)
277
277
  self.model.f_pregas = Math.floor(getGas.data.gas - 0)
278
278
  }
279
279
  }