label调整

This commit is contained in:
lai
2024-07-11 10:17:54 +08:00
parent c0ec4893c8
commit 9a88364d8b

View File

@@ -206,11 +206,13 @@ function fnGet45GList(pageNum?: number) {
typeArr.value = typeMapping[queryParams.totalType] || ['AMF', 'MME'];
//进行筛选
neCascaderOptions.value = neInfoStore.getNeCascaderOptions.filter(
(item: any) => {
return typeArr.value.includes(item.value);
return typeArr.value.includes(item.value); //包括AMF或者MME
}
);
if (neCascaderOptions.value.length === 0) {
message.warning({
content: t('common.noData'),
@@ -310,7 +312,7 @@ onMounted(() => {
:options="[
{ label: '4G', value: '4g' },
{ label: '5G', value: '5g' },
{ label: '4/5G', value: '45g' },
{ label: '4&5G', value: '45g' },
]"
:allow-clear="false"
:placeholder="t('common.selectPlease')"