From 0e210505f5111c7a08206128b2ac05f93c8ebef2 Mon Sep 17 00:00:00 2001 From: liangzai <2440983361@qq.com> Date: Tue, 16 Dec 2025 19:33:21 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=EF=BC=9A=E6=8E=A8=E5=B9=BF?= =?UTF-8?q?=E6=8A=A5=E5=91=8A=E8=AE=BE=E7=BD=AE=E4=BB=B7=E6=A0=BC=E5=BC=B9?= =?UTF-8?q?=E7=AA=97=E6=8F=90=E4=BB=B7=E6=88=90=E6=9C=AC=E6=8F=90=E7=A4=BA?= =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/PriceInputPopup.vue | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/components/PriceInputPopup.vue b/src/components/PriceInputPopup.vue index f7eec85..bbc1139 100644 --- a/src/components/PriceInputPopup.vue +++ b/src/components/PriceInputPopup.vue @@ -27,7 +27,9 @@
推广收益 = 客户查询价 - 我的成本
我的成本 = 实际底价 + 提价成本
-
提价成本:超过提价阈值部分,平台会按比例收取费用
+
提价成本:设置{{ productConfig.price_threshold }}元以上的部分收取{{ + rateFormat(productConfig.price_fee_rate) + }}的提价成本
设定范围:{{ productConfig.price_range_min }}元 - {{ productConfig.price_range_max }}
@@ -81,7 +83,9 @@ const costPrice = computed(() => { return safeTruncate(totalCost); }) - +const rateFormat = (rate) => { + return rate * 100 + '%'; +} const baseCost = computed(() => { if (!productConfig.value) return "0.00"; const actualBasePrice = Number(productConfig.value.actual_base_price) || 0;