fix: 修改环境配置和查询范围逻辑

将开发环境API地址切换至测试服务器
简化richedit页面查询范围逻辑,固定为'all'
This commit is contained in:
34701892@qq.com 2025-12-05 10:26:36 +08:00
parent 5721173933
commit 49fd3c996d
2 changed files with 5 additions and 5 deletions

View File

@ -4,11 +4,11 @@ ENV = development
# 本地环境接口地址 # 本地环境接口地址
# VITE_API_URL = http://4155gf93ll13.vicp.fun/admin # VITE_API_URL = http://4155gf93ll13.vicp.fun/admin
# VITE_API_URL = http://localhost:13579/admin # VITE_API_URL = http://localhost:13579/admin
VITE_API_URL = https://cankao.cs.com.cn/admin # VITE_API_URL = https://cankao.cs.com.cn/admin
# VITE_API_URL = http://123.60.153.169:8040/admin VITE_API_URL = http://123.60.153.169:8040/admin
# VITE_API_URL = /api # VITE_API_URL = /api
#H5的域名目前是给列表里的复制用 #H5的域名目前是给列表里的复制用
VITE_API_URL_H5 = https://cankao.cs.com.cn # VITE_API_URL_H5 = https://cankao.cs.com.cn
# VITE_API_URL_H5 = http://123.60.153.169:8040 VITE_API_URL_H5 = http://123.60.153.169:8040

View File

@ -593,7 +593,7 @@ function initPageData() {
size: tableData.size, size: tableData.size,
dateline_from: _sdate || undefined, dateline_from: _sdate || undefined,
dateline_to: _edate || undefined, dateline_to: _edate || undefined,
range: Session.get('userInfoLocal').userType == '01' ? 'review' : Session.get('userInfoLocal').userType == '02' ? 'secondReview' : 'all', range: 'all',
includeRuleIds: includeRuleIds.value, includeRuleIds: includeRuleIds.value,
excludeRuleIds: excludeRuleIds.value, excludeRuleIds: excludeRuleIds.value,
}; };