From a904137b60d3c776a49664216357a879c15f6ebc Mon Sep 17 00:00:00 2001 From: zhaojunlong <5482498@qq.com> Date: Mon, 15 Dec 2025 18:31:33 +0800 Subject: [PATCH] =?UTF-8?q?fix(config):=20=E8=B0=83=E6=95=B4=E9=87=91?= =?UTF-8?q?=E9=A2=9D=E9=98=88=E5=80=BC=E5=92=8C=E6=8F=8F=E8=BF=B0=E4=BB=A5?= =?UTF-8?q?=E5=8C=B9=E9=85=8D10=E4=BA=BF=E6=A0=87=E5=87=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 将配置文件中的金额阈值从1亿调整为10亿,并更新相关描述。同时修改前端表单默认值, 确保与后端配置一致。 --- config.example.json | 4 ++-- config.json | 4 ++-- public/index.html | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/config.example.json b/config.example.json index fbd2862..3a12223 100644 --- a/config.example.json +++ b/config.example.json @@ -2,8 +2,8 @@ "scheduler": { "enabled": true, "cronTime": "0 9 * * *", - "threshold": 10000, - "description": "每天9点采集大于1亿的项目", + "threshold": 100000, + "description": "每天9点采集大于10亿的项目", "timeRange": "thisMonth" }, "email": { diff --git a/config.json b/config.json index b7eefa7..451c2d3 100644 --- a/config.json +++ b/config.json @@ -2,8 +2,8 @@ "scheduler": { "enabled": false, "cronTime": "0 9 * * *", - "threshold": 10000, - "description": "每天9点采集大于1亿的项目", + "threshold": 100000, + "description": "每天9点采集当日大于10亿的项目", "timeRange": "today" }, "email": { diff --git a/public/index.html b/public/index.html index fbfd01c..a1c2695 100644 --- a/public/index.html +++ b/public/index.html @@ -396,7 +396,7 @@
- +
@@ -494,7 +494,7 @@
- + 10亿 = 100000万元 | 5亿 = 50000万元 | 1亿 = 10000万元