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