修改传参

This commit is contained in:
Vce 2024-06-03 18:26:44 +08:00
parent 9b873862fa
commit c505496a6f
2 changed files with 5 additions and 4 deletions

View File

@ -4,7 +4,7 @@ NODE_ENV = 'development'
# 本地环境接口地址(/api/index.ts文件中使用) # 本地环境接口地址(/api/index.ts文件中使用)
# 后端本地 # 后端本地
# VITE_API_URL = 'http://192.168.34.221:19111' # VITE_API_URL = 'http://192.168.34.221:19111'
VITE_API_URL = 'http://192.168.34.221:9111' #雄哥本地 # VITE_API_URL = 'http://192.168.34.221:9111' #雄哥本地
VITE_API_URL = 'http://182.90.224.237:51234' #雄哥远程 VITE_API_URL = 'http://182.90.224.237:51234' #雄哥远程
# VITE_API_URL = 'http://192.168.34.221:28889' # VITE_API_URL = 'http://192.168.34.221:28889'
# VITE_API_URL = 'http://121.196.214.246/api' # VITE_API_URL = 'http://121.196.214.246/api'
@ -24,7 +24,7 @@ VITE_API_URL = 'http://182.90.224.237:51234' #雄哥远程
# VITE_API_URL = 'http://182.90.224.237:15551' # VITE_API_URL = 'http://182.90.224.237:15551'
# agjt # agjt
# VITE_API_URL = 'http://42.180.188.17:9809' #生产环境 # VITE_API_URL = 'http://42.180.188.17:9809' #生产环境
VITE_API_URL = 'http://42.180.188.17:11211' #测试环境 # VITE_API_URL = 'http://42.180.188.17:11211' #测试环境
# VITE_API_URL = 'http://42.180.188.17:11211' #测试环境 # VITE_API_URL = 'http://42.180.188.17:11211' #测试环境
# VITE_API_URL = 'http://jxj.zhgdyun.com:19812' # VITE_API_URL = 'http://jxj.zhgdyun.com:19812'
# 苏立信 # 苏立信

View File

@ -163,7 +163,8 @@ let yData = ref([] as any)
// //
const queryAttendanceOfEachCompany = async () => { const queryAttendanceOfEachCompany = async () => {
const res: any = await queryAttendanceOfEachCompanyApi({ const res: any = await queryAttendanceOfEachCompanyApi({
projectSn: store.sn projectSn: store.sn,
isCountMainEnterprise: 1
}); });
if (res.result) { if (res.result) {
console.log("获取总包出勤情况分析数据", res); console.log("获取总包出勤情况分析数据", res);
@ -327,7 +328,7 @@ let processList = ref([] as any)
const queryCountEnterprise = async () => { const queryCountEnterprise = async () => {
const res: any = await queryCountEnterpriseApi({ const res: any = await queryCountEnterpriseApi({
projectSn: store.sn, projectSn: store.sn,
isCountMainEnterprise: "1" isCountMainEnterprise: 1
}); });
if (res.result) { if (res.result) {
console.log("总包进度列表", res); console.log("总包进度列表", res);