update:对于参数内需要传参tagReq的处理
This commit is contained in:
@@ -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');
|
||||
|
||||
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user