fix(config): 调整金额阈值和描述以匹配10亿标准
将配置文件中的金额阈值从1亿调整为10亿,并更新相关描述。同时修改前端表单默认值, 确保与后端配置一致。
This commit is contained in:
@@ -2,8 +2,8 @@
|
||||
"scheduler": {
|
||||
"enabled": true,
|
||||
"cronTime": "0 9 * * *",
|
||||
"threshold": 10000,
|
||||
"description": "每天9点采集大于1亿的项目",
|
||||
"threshold": 100000,
|
||||
"description": "每天9点采集大于10亿的项目",
|
||||
"timeRange": "thisMonth"
|
||||
},
|
||||
"email": {
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
"scheduler": {
|
||||
"enabled": false,
|
||||
"cronTime": "0 9 * * *",
|
||||
"threshold": 10000,
|
||||
"description": "每天9点采集大于1亿的项目",
|
||||
"threshold": 100000,
|
||||
"description": "每天9点采集当日大于10亿的项目",
|
||||
"timeRange": "today"
|
||||
},
|
||||
"email": {
|
||||
|
||||
@@ -396,7 +396,7 @@
|
||||
|
||||
<div class="form-group">
|
||||
<label>金额阈值 (万元) - 只显示大于此金额的项目</label>
|
||||
<input type="number" id="reportThreshold" value="1000" min="0" step="100">
|
||||
<input type="number" id="reportThreshold" value="100000" min="0" step="100">
|
||||
</div>
|
||||
|
||||
<button class="btn" onclick="generateReport()">生成报告</button>
|
||||
@@ -494,7 +494,7 @@
|
||||
|
||||
<div class="form-group">
|
||||
<label>金额阈值 (万元)</label>
|
||||
<input type="number" id="schedulerThresholdInput" value="10000" min="0" step="1000">
|
||||
<input type="number" id="schedulerThresholdInput" value="100000" min="0" step="1000">
|
||||
<small style="color: #666; display: block; margin-top: 5px;">
|
||||
10亿 = 100000万元 | 5亿 = 50000万元 | 1亿 = 10000万元
|
||||
</small>
|
||||
|
||||
Reference in New Issue
Block a user