网元管理新增同步网元开关

This commit is contained in:
lai
2023-12-27 17:09:09 +08:00
parent 9fdf13676e
commit d8d1b53027
2 changed files with 18 additions and 5 deletions

View File

@@ -221,6 +221,7 @@ let modalState: ModalStateType = reactive({
pvFlag: '',
rmUid: '',
vendorName: '',
sync: true,
},
importFrom: {
neId: '',
@@ -1110,6 +1111,18 @@ onMounted(() => {
></a-input>
</a-form-item>
</a-col>
<a-col :lg="12" :md="12" :xs="24">
<a-form-item
:label="t('views.configManage.neManage.sync')"
name="province"
>
<a-switch
v-model:checked="modalState.from.sync"
:checked-children="t('views.configManage.neManage.open')"
:un-checked-children="t('views.configManage.neManage.close')"
/>
</a-form-item>
</a-col>
</a-row>
</a-form>
</DraggableModal>