getPrice

计算价格

目前為 2024-01-19 提交的版本,檢視 最新版本

此腳本不應該直接安裝,它是一個供其他腳本使用的函式庫。欲使用本函式庫,請在腳本 metadata 寫上: // @require https://update.gf.qytechs.cn/scripts/485233/1314099/getPrice.js

  const defaultRate = 7;
  const defaultShippingCost = 71;

  function getPrice(cost, weight) {
    if (cost > 300) {
      alert('价格太高,请自行计算!');
      return 0;
    }
    let proRate = 0;
    if (cost <= 50) {
      proRate = 0.45;
    }
    if (cost <= 100 && cost > 50) {
      proRate = 0.375;
    }
    if (cost <= 200 && cost > 100) {
      proRate = 0.275;
    }
    if (cost <= 300 && cost > 200) {
      proRate = 0.325;
    }
    const rate = defaultRate * 0.9;
    const shippingCost = defaultShippingCost + 10;
    if (weight !== 0) {
      const price = (cost + cost * proRate + weight * shippingCost) / rate;
      return Math.ceil(price);
    }
    return 0;
  }

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址