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;