fix: 修改环境配置和查询范围逻辑
将开发环境API地址切换至测试服务器 简化richedit页面查询范围逻辑,固定为'all'
This commit is contained in:
parent
5721173933
commit
49fd3c996d
|
|
@ -4,11 +4,11 @@ ENV = development
|
|||
# 本地环境接口地址
|
||||
# VITE_API_URL = http://4155gf93ll13.vicp.fun/admin
|
||||
# VITE_API_URL = http://localhost:13579/admin
|
||||
VITE_API_URL = https://cankao.cs.com.cn/admin
|
||||
# VITE_API_URL = http://123.60.153.169:8040/admin
|
||||
# VITE_API_URL = https://cankao.cs.com.cn/admin
|
||||
VITE_API_URL = http://123.60.153.169:8040/admin
|
||||
|
||||
# VITE_API_URL = /api
|
||||
|
||||
#H5的域名,目前是给列表里的复制用
|
||||
VITE_API_URL_H5 = https://cankao.cs.com.cn
|
||||
# VITE_API_URL_H5 = http://123.60.153.169:8040
|
||||
# VITE_API_URL_H5 = https://cankao.cs.com.cn
|
||||
VITE_API_URL_H5 = http://123.60.153.169:8040
|
||||
|
|
|
|||
|
|
@ -593,7 +593,7 @@ function initPageData() {
|
|||
size: tableData.size,
|
||||
dateline_from: _sdate || undefined,
|
||||
dateline_to: _edate || undefined,
|
||||
range: Session.get('userInfoLocal').userType == '01' ? 'review' : Session.get('userInfoLocal').userType == '02' ? 'secondReview' : 'all',
|
||||
range: 'all',
|
||||
includeRuleIds: includeRuleIds.value,
|
||||
excludeRuleIds: excludeRuleIds.value,
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in New Issue