UDM用户看板

This commit is contained in:
lai
2025-03-26 20:38:51 +08:00
parent cef90a49f9
commit 35c7b86865
2 changed files with 16 additions and 9 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;
}
});
}
@@ -263,7 +263,7 @@ function fnSelectUDM(e: any) {
udmNeId.value = e.key;
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;
}
});
}