fix: MME事件类型cm显示改为ECM
This commit is contained in:
@@ -415,7 +415,12 @@ onMounted(() => {
|
|||||||
dict.ueAauthCode = resArr[0].value;
|
dict.ueAauthCode = resArr[0].value;
|
||||||
}
|
}
|
||||||
if (resArr[1].status === 'fulfilled') {
|
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') {
|
if (resArr[2].status === 'fulfilled') {
|
||||||
dict.ueEventCmState = resArr[2].value;
|
dict.ueEventCmState = resArr[2].value;
|
||||||
|
|||||||
Reference in New Issue
Block a user