import CONFIG from "@/config";

// 无税单价
export function iunitprice(tax = 0, price = 0) {
  return ((Number(price) / (Number(tax) / 100 + 1)) * 1).toFixed(
    CONFIG.precision
  );
}