fix: MME事件类型cm显示改为ECM

This commit is contained in:
TsMask
2024-09-03 11:19:39 +08:00
parent 2ebc90e974
commit 313b90ad31

View File

@@ -415,7 +415,12 @@ onMounted(() => {
dict.ueAauthCode = resArr[0].value;
}
if (resArr[1].status === 'fulfilled') {
dict.ueEventType = resArr[1].value;
dict.ueEventType = resArr[1].value.map(item => {
if (item.value === 'cm-state') {
item.label = 'ECM Status';
}
return item;
});
}
if (resArr[2].status === 'fulfilled') {
dict.ueEventCmState = resArr[2].value;