fix: 恢复显示快速PLMN修改窗口
This commit is contained in:
@@ -9,6 +9,7 @@ import useI18n from '@/hooks/useI18n';
|
|||||||
import TableColumnsDnd from '@/components/TableColumnsDnd/index.vue';
|
import TableColumnsDnd from '@/components/TableColumnsDnd/index.vue';
|
||||||
import { RESULT_CODE_SUCCESS } from '@/constants/result-constants';
|
import { RESULT_CODE_SUCCESS } from '@/constants/result-constants';
|
||||||
import useNeInfoStore from '@/store/modules/neinfo';
|
import useNeInfoStore from '@/store/modules/neinfo';
|
||||||
|
import Base from './components/Base.vue';
|
||||||
import useOptions from './hooks/useOptions';
|
import useOptions from './hooks/useOptions';
|
||||||
import useConfigList from './hooks/useConfigList';
|
import useConfigList from './hooks/useConfigList';
|
||||||
import useConfigArray from './hooks/useConfigArray';
|
import useConfigArray from './hooks/useConfigArray';
|
||||||
@@ -391,6 +392,11 @@ const { batchState, modalBatchOpen, modalBatchClose, modalBatchOk } =
|
|||||||
fnActiveConfigNode,
|
fnActiveConfigNode,
|
||||||
});
|
});
|
||||||
|
|
||||||
|
const baseOpen = ref(false);
|
||||||
|
function fnBaseOpen() {
|
||||||
|
baseOpen.value = !baseOpen.value;
|
||||||
|
}
|
||||||
|
|
||||||
onMounted(() => {
|
onMounted(() => {
|
||||||
// 获取网元网元列表
|
// 获取网元网元列表
|
||||||
neCascaderOptions.value = neListStore.getNeCascaderOptions.filter(
|
neCascaderOptions.value = neListStore.getNeCascaderOptions.filter(
|
||||||
@@ -430,6 +436,13 @@ onMounted(() => {
|
|||||||
|
|
||||||
<template>
|
<template>
|
||||||
<PageContainer>
|
<PageContainer>
|
||||||
|
<template #content> </template>
|
||||||
|
<template #contentExtra>
|
||||||
|
<a-button type="primary" @click="fnBaseOpen">
|
||||||
|
Quickly Modify PLMN
|
||||||
|
</a-button>
|
||||||
|
</template>
|
||||||
|
|
||||||
<a-row :gutter="16">
|
<a-row :gutter="16">
|
||||||
<a-col
|
<a-col
|
||||||
:lg="6"
|
:lg="6"
|
||||||
@@ -1053,6 +1066,9 @@ onMounted(() => {
|
|||||||
</a-row>
|
</a-row>
|
||||||
</a-form>
|
</a-form>
|
||||||
</ProModal>
|
</ProModal>
|
||||||
|
|
||||||
|
<!-- 快速修改 -->
|
||||||
|
<Base v-model:open="baseOpen"></Base>
|
||||||
</PageContainer>
|
</PageContainer>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user