From f71cb513d005401bcb0b9628d14e9d8fe5483ef3 Mon Sep 17 00:00:00 2001 From: liutong <836164388@qq.com> Date: Fri, 30 May 2025 20:28:41 +0800 Subject: [PATCH] =?UTF-8?q?refactor(market):=20=E6=9B=B4=E6=96=B0=E9=A6=96?= =?UTF-8?q?=E9=A1=B5=E7=BB=9F=E8=AE=A1=E6=A0=8F=E5=B1=95=E7=A4=BA=E5=86=85?= =?UTF-8?q?=E5=AE=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 将"目标"、"预测"、"成交"标签改为"未成交"、"待续费"、"已关单" - 更新对应数据字段: - 目标百分比:infoData.goal_percent → infoData.month.unconverted_rate - 预测百分比:infoData.yc_yj_percent → infoData.month.renewal_rate - 成交百分比:infoData.cj_yj_percent → infoData.month.closed_rate --- pages/market/index/index.vue | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/pages/market/index/index.vue b/pages/market/index/index.vue index feae96e..870a487 100644 --- a/pages/market/index/index.vue +++ b/pages/market/index/index.vue @@ -223,29 +223,29 @@ {{infoData.date}} - + - - {{ infoData.goal_percent }}% + + {{ infoData.month.unconverted_rate }}% - 目标 + 未成交 - + - - {{ infoData.yc_yj_percent }}% + + {{ infoData.month.renewal_rate }}% - 预测 + 待续费 - + - - {{ infoData.cj_yj_percent }}% + + {{ infoData.month.closed_rate }}% - 成交 + 已关单