update:对于参数内需要传参tagReq的处理

This commit is contained in:
2026-03-12 14:42:02 +08:00
parent 88bb04e12f
commit 3703801cd6
2 changed files with 7 additions and 3 deletions

View File

@@ -446,6 +446,13 @@ const getTableDataFun = () => {
delete reqParams[key];
}
}
// api参数内需要传tagReq的处理
if (props.params?.tagReq) {
for (const key in props.params?.tagReq) {
reqParams.tagReq[key] = props.params?.tagReq[key];
}
}
loading.value = true;
tableData.value = [];
emit('tableDataquery');

View File

@@ -530,9 +530,6 @@ const inputFileFun = async (data: any) => {
param.runId = props.runInfo.uuid;
}
console.log(param, 'paramparamparamparamparam');
console.log(props.runInfo, 'props.runInfo');
try {
const res: any = await importSimulationPerformanceApi(param);
if (res && res.code === 200) {