fix: 修正获取UDM子项数量的响应数据结构并移除无用的缓存ID

This commit is contained in:
TsMask
2025-03-25 18:43:04 +08:00
parent 1d5268d348
commit 163ce9b64c
2 changed files with 1 additions and 2 deletions

View File

@@ -198,7 +198,7 @@ async function fnGetSkim() {
// UDM
listUDMSub({ neId: udmNeId.value, pageNum: 1, pageSize: 1 }).then(res => {
if (res.code === RESULT_CODE_SUCCESS) {
skimState.udmSubNum = res.data.total;
skimState.udmSubNum = res.total;
}
});
}

View File

@@ -985,7 +985,6 @@ onBeforeUnmount(() => {
</a-tooltip>
<TableColumnsDnd
v-if="tableColumns.length > 0"
:cache-id="`kpiTarget_${state.neType[0]}`"
:columns="tableColumns"
v-model:columns-dnd="tableColumnsDnd"
></TableColumnsDnd>