Commit d3afb785 authored by “yiyousong”'s avatar “yiyousong”

perf: 优化报表配置

parent be050fe8
...@@ -264,10 +264,12 @@ export default { ...@@ -264,10 +264,12 @@ export default {
}, },
filterModel(modelId) { filterModel(modelId) {
let modelName = "--";
let curModel = this.modelData.find((item) => item.id === modelId); let curModel = this.modelData.find((item) => item.id === modelId);
if (curModel) { if (curModel) {
return curModel.modelName; modelName = curModel.modelName;
} }
return modelName;
}, },
}, },
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment