fix: UDM用户隐藏csv文件导入导出/保持回显

This commit is contained in:
TsMask
2023-11-09 12:04:28 +08:00
parent b983d77aeb
commit c3b46d0f0c
2 changed files with 39 additions and 46 deletions

View File

@@ -800,6 +800,7 @@ onMounted(() => {
ok-text="TXT"
ok-type="default"
@confirm="fnExportList('txt')"
:show-cancel="false"
cancel-text="CSV"
@cancel="fnExportList('csv')"
>
@@ -844,15 +845,15 @@ onMounted(() => {
:selected-keys="[tableState.size as string]"
@click="fnTableSize"
>
<a-menu-item key="default">{{
t('common.size.default')
}}</a-menu-item>
<a-menu-item key="middle">{{
t('common.size.middle')
}}</a-menu-item>
<a-menu-item key="small">{{
t('common.size.small')
}}</a-menu-item>
<a-menu-item key="default">
{{ t('common.size.default') }}
</a-menu-item>
<a-menu-item key="middle">
{{ t('common.size.middle') }}
</a-menu-item>
<a-menu-item key="small">
{{ t('common.size.small') }}
</a-menu-item>
</a-menu>
</template>
</a-dropdown>
@@ -1064,9 +1065,7 @@ onMounted(() => {
@cancel="fnBatchModalCancel"
>
<a-form name="modalStateBatchFrom" layout="horizontal">
<a-row :gutter="16">
<a-col :lg="12" :md="12" :xs="24">
<a-form-item
:label="t('views.neUser.auth.num')"
@@ -1081,7 +1080,6 @@ onMounted(() => {
</a-col>
</a-row>
<a-row :gutter="16">
<a-col :lg="12" :md="12" :xs="24">
<a-form-item
@@ -1144,19 +1142,17 @@ onMounted(() => {
</a-col>
<a-col :lg="12" :md="12" :xs="24">
<a-form-item
label="OPC"
name="opc"
v-bind="modalStateBatchFrom.validateInfos.opc"
>
<a-input
v-model:value="modalState.BatchForm.opc"
allow-clear
></a-input>
</a-form-item>
label="OPC"
name="opc"
v-bind="modalStateBatchFrom.validateInfos.opc"
>
<a-input
v-model:value="modalState.BatchForm.opc"
allow-clear
></a-input>
</a-form-item>
</a-col>
</a-row>
</a-form>
</a-modal>
@@ -1219,7 +1215,7 @@ onMounted(() => {
@upload="fnModalUploadImportUpload"
@close="fnModalUploadImportClose"
v-model:visible="uploadImportState.visible"
:ext="['.csv', '.txt']"
:ext="['.txt']"
>
<template #default>
<a-textarea

View File

@@ -438,19 +438,20 @@ const modalStateFrom = Form.useForm(
* 进行表达规则校验
*/
function fnModalOk() {
const from = Object.assign({}, toRaw(modalState.from));
let validateNames = ['imsi', 'staticIp'];
if (modalState.from.id === '') {
if (from.id === '') {
validateNames.push('smData');
}
modalStateFrom
.validate(validateNames)
.then(e => {
modalState.confirmLoading = true;
const from = toRaw(modalState.from);
let ardArr = [0, 0, 0, 0, 0, 0, 0, 0];
let hplmnArr = [0, 0, 0, 0, 0, 0, 0, 0];
let odbArr = [0, 0, 0, 0, 0, 0, 0, 0,0];
let odbArr = [0, 0, 0, 0, 0, 0, 0, 0, 0];
from.ard.forEach((item: any) => {
ardArr[item] = 1;
@@ -478,8 +479,6 @@ function fnModalOk() {
content: t('common.msgSuccess', { msg: modalState.title }),
duration: 3,
});
modalState.visibleByEdit = false;
modalStateFrom.resetFields();
fnGetList();
} else {
message.error({
@@ -490,6 +489,7 @@ function fnModalOk() {
})
.finally(() => {
hide();
fnModalCancel();
modalState.confirmLoading = false;
});
})
@@ -527,11 +527,12 @@ const modalStateBatchFrom = Form.useForm(
* 进行表达规则校验
*/
function fnBatchModalOk() {
const from = Object.assign({}, toRaw(modalState.BatchForm));
modalStateBatchFrom
.validate()
.then(e => {
modalState.confirmLoading = true;
const from = toRaw(modalState.BatchForm);
let ardArr = [0, 0, 0, 0, 0, 0, 0, 0];
let hplmnArr = [0, 0, 0, 0, 0, 0, 0, 0];
let odbArr = [0, 0, 0, 0, 0, 0, 0, 0];
@@ -564,8 +565,6 @@ function fnBatchModalOk() {
content: t('common.msgSuccess', { msg: modalState.title }),
duration: 3,
});
modalState.visibleByBatch = false;
modalStateBatchFrom.resetFields();
fnGetList();
} else {
message.error({
@@ -575,11 +574,8 @@ function fnBatchModalOk() {
}
})
.finally(() => {
1;
hide();
from.epsOdb = [];
from.hplmnOdb = [];
from.ard = [];
fnBatchModalCancel();
modalState.confirmLoading = false;
});
})
@@ -981,6 +977,7 @@ onMounted(() => {
ok-text="TXT"
ok-type="default"
@confirm="fnExportList('txt')"
:show-cancel="false"
cancel-text="CSV"
@cancel="fnExportList('csv')"
>
@@ -1027,15 +1024,15 @@ onMounted(() => {
:selected-keys="[tableState.size as string]"
@click="fnTableSize"
>
<a-menu-item key="default">{{
t('common.size.default')
}}</a-menu-item>
<a-menu-item key="middle">{{
t('common.size.middle')
}}</a-menu-item>
<a-menu-item key="small">{{
t('common.size.small')
}}</a-menu-item>
<a-menu-item key="default">
{{ t('common.size.default') }}
</a-menu-item>
<a-menu-item key="middle">
{{ t('common.size.middle') }}
</a-menu-item>
<a-menu-item key="small">
{{ t('common.size.small') }}
</a-menu-item>
</a-menu>
</template>
</a-dropdown>
@@ -1751,7 +1748,7 @@ onMounted(() => {
@upload="fnModalUploadImportUpload"
@close="fnModalUploadImportClose"
v-model:visible="uploadImportState.visible"
:ext="['.csv', '.txt']"
:ext="['.txt']"
>
<template #default>
<a-textarea