expression.js 191 B

12345678
  1. import CONFIG from "@/config";
  2. // 无税单价
  3. export function iunitprice(tax = 0, price = 0) {
  4. return ((Number(price) / (Number(tax) / 100 + 1)) * 1).toFixed(
  5. CONFIG.precision
  6. );
  7. }