1304 lines
37 KiB
Vue
1304 lines
37 KiB
Vue
<script setup lang="ts">
|
|
import { reactive, ref, onMounted, toRaw } from 'vue';
|
|
import { PageContainer } from 'antdv-pro-layout';
|
|
import { ProModal } from 'antdv-pro-modal';
|
|
import { message, Modal, Form, notification } from 'ant-design-vue/es';
|
|
import { SizeType } from 'ant-design-vue/es/config-provider';
|
|
import { MenuInfo } from 'ant-design-vue/es/menu/src/interface';
|
|
import { ColumnsType } from 'ant-design-vue/es/table';
|
|
import UploadModal from '@/components/UploadModal/index.vue';
|
|
import TableColumnsDnd from '@/components/TableColumnsDnd/index.vue';
|
|
import useNeInfoStore from '@/store/modules/neinfo';
|
|
import useI18n from '@/hooks/useI18n';
|
|
import { RESULT_CODE_SUCCESS } from '@/constants/result-constants';
|
|
import { saveAs } from 'file-saver';
|
|
import {
|
|
addUDMAuth,
|
|
updateUDMAuth,
|
|
batchAddUDMAuth,
|
|
batchDelUDMAuth,
|
|
delUDMAuth,
|
|
getUDMAuth,
|
|
exportUDMAuth,
|
|
importUDMAuth,
|
|
resetUDMAuth,
|
|
listUDMAuth,
|
|
} from '@/api/neData/udm_auth';
|
|
import { uploadFile } from '@/api/tool/file';
|
|
import { getNeViewFile } from '@/api/tool/neFile';
|
|
const { t } = useI18n();
|
|
|
|
/**网元参数 */
|
|
let neOtions = ref<Record<string, any>[]>([]);
|
|
|
|
/**查询参数 */
|
|
let queryParams = reactive({
|
|
/**网元ID */
|
|
neId: undefined,
|
|
/**移动编号 */
|
|
imsi: '',
|
|
/**排序字段 */
|
|
sortField: 'imsi',
|
|
/**排序方式 */
|
|
sortOrder: 'asc',
|
|
/**当前页数 */
|
|
pageNum: 1,
|
|
/**每页条数 */
|
|
pageSize: 20,
|
|
});
|
|
|
|
/**查询参数重置 */
|
|
function fnQueryReset() {
|
|
queryParams = Object.assign(queryParams, {
|
|
imsi: '',
|
|
sortField: 'imsi',
|
|
sortOrder: 'asc',
|
|
pageNum: 1,
|
|
pageSize: 20,
|
|
});
|
|
tablePagination.current = 1;
|
|
tablePagination.pageSize = 20;
|
|
fnGetList();
|
|
}
|
|
|
|
/**表格状态类型 */
|
|
type TabeStateType = {
|
|
/**加载等待 */
|
|
loading: boolean;
|
|
/**紧凑型 */
|
|
size: SizeType;
|
|
/**搜索栏 */
|
|
seached: boolean;
|
|
/**记录数据 */
|
|
data: object[];
|
|
/**勾选记录 */
|
|
selectedRowKeys: (string | number)[];
|
|
};
|
|
|
|
/**表格状态 */
|
|
let tableState: TabeStateType = reactive({
|
|
loading: false,
|
|
size: 'small',
|
|
seached: true,
|
|
data: [],
|
|
selectedRowKeys: [],
|
|
});
|
|
|
|
/**表格字段列 */
|
|
let tableColumns = ref<ColumnsType>([
|
|
{
|
|
title: 'IMSI',
|
|
dataIndex: 'imsi',
|
|
align: 'center',
|
|
sorter: true,
|
|
width: 150,
|
|
},
|
|
{
|
|
title: 'AMF',
|
|
dataIndex: 'amf',
|
|
align: 'center',
|
|
width: 80,
|
|
},
|
|
// {
|
|
// title: 'KI',
|
|
// dataIndex: 'ki',
|
|
// align: 'center',
|
|
// width: 10,
|
|
// },
|
|
// {
|
|
// title: 'OPC',
|
|
// dataIndex: 'opc',
|
|
// align: 'center',
|
|
// width: 10,
|
|
// },
|
|
{
|
|
title: 'Algo Index',
|
|
dataIndex: 'algoIndex',
|
|
align: 'center',
|
|
width: 100,
|
|
},
|
|
{
|
|
title: t('common.operate'),
|
|
key: 'imsi',
|
|
align: 'left',
|
|
},
|
|
]);
|
|
|
|
/**表格字段列排序 */
|
|
let tableColumnsDnd = ref<ColumnsType>([]);
|
|
|
|
/**表格分页器参数 */
|
|
let tablePagination = reactive({
|
|
/**当前页数 */
|
|
current: 1,
|
|
/**每页条数 */
|
|
pageSize: 20,
|
|
/**默认的每页条数 */
|
|
defaultPageSize: 20,
|
|
/**指定每页可以显示多少条 */
|
|
pageSizeOptions: ['10', '20', '50', '100'],
|
|
/**只有一页时是否隐藏分页器 */
|
|
hideOnSinglePage: false,
|
|
/**是否可以快速跳转至某页 */
|
|
showQuickJumper: true,
|
|
/**是否可以改变 pageSize */
|
|
showSizeChanger: true,
|
|
/**数据总数 */
|
|
total: 0,
|
|
showTotal: (total: number) => t('common.tablePaginationTotal', { total }),
|
|
onChange: (page: number, pageSize: number) => {
|
|
tablePagination.current = page;
|
|
tablePagination.pageSize = pageSize;
|
|
queryParams.pageNum = page;
|
|
queryParams.pageSize = pageSize;
|
|
fnGetList();
|
|
},
|
|
});
|
|
|
|
/**表格紧凑型变更操作 */
|
|
function fnTableSize({ key }: MenuInfo) {
|
|
tableState.size = key as SizeType;
|
|
}
|
|
|
|
/**表格分页、排序、筛选变化时触发操作, 排序方式,取值为 ascend descend */
|
|
function fnTableChange(pagination: any, filters: any, sorter: any, extra: any) {
|
|
const { field, order } = sorter;
|
|
if (order) {
|
|
queryParams.sortField = field;
|
|
queryParams.sortOrder = order.replace('end', '');
|
|
} else {
|
|
queryParams.sortOrder = 'asc';
|
|
}
|
|
fnGetList(1);
|
|
}
|
|
|
|
/**表格多选 */
|
|
function fnTableSelectedRowKeys(keys: (string | number)[]) {
|
|
tableState.selectedRowKeys = keys;
|
|
}
|
|
|
|
/**对话框对象信息状态类型 */
|
|
type ModalStateType = {
|
|
/**新增框或修改框是否显示 */
|
|
openByEdit: boolean;
|
|
/**批量新增新增框是否显示 */
|
|
openByBatch: boolean;
|
|
/**批量新增删除框是否显示 */
|
|
openByBatchDel: boolean;
|
|
/**标题 */
|
|
title: string;
|
|
/**表单数据 */
|
|
from: Record<string, any>;
|
|
/**表单数据 */
|
|
BatchDelForm: Record<string, any>;
|
|
/**确定按钮 loading */
|
|
confirmLoading: boolean;
|
|
/**更新加载数据按钮 loading */
|
|
loadDataLoading: boolean;
|
|
};
|
|
|
|
/**对话框对象信息状态 */
|
|
let modalState: ModalStateType = reactive({
|
|
openByEdit: false,
|
|
openByBatch: false,
|
|
openByBatchDel: false,
|
|
title: 'UDM鉴权用户',
|
|
from: {
|
|
num: 1,
|
|
id: '',
|
|
imsi: '',
|
|
amf: '8000',
|
|
ki: '',
|
|
algoIndex: 0,
|
|
opc: '',
|
|
},
|
|
BatchDelForm: {
|
|
num: 1,
|
|
imsi: '',
|
|
},
|
|
confirmLoading: false,
|
|
loadDataLoading: false,
|
|
});
|
|
|
|
/**对话框内表单属性和校验规则 */
|
|
const modalStateFrom = Form.useForm(
|
|
modalState.from,
|
|
reactive({
|
|
num: [
|
|
{
|
|
required: true,
|
|
message: t('views.neUser.auth.numAdd') + t('common.unableNull'),
|
|
},
|
|
],
|
|
imsi: [
|
|
{ required: true, message: 'IMSI' + t('common.unableNull') },
|
|
{ min: 15, max: 15, message: t('views.neUser.auth.imsiConfirm') },
|
|
],
|
|
amf: [{ required: true, message: 'AMF' + t('common.unableNull') }],
|
|
ki: [
|
|
{ required: true, message: 'KI' + t('common.unableNull') },
|
|
{ min: 32, max: 32, message: t('views.neUser.auth.kiTip') },
|
|
],
|
|
algoIndex: [
|
|
{ required: true, message: 'algoIndex' + t('common.unableNull') },
|
|
],
|
|
})
|
|
);
|
|
|
|
/**对话框内批量删除表单属性和校验规则 */
|
|
const modalStateBatchDelFrom = Form.useForm(
|
|
modalState.BatchDelForm,
|
|
reactive({
|
|
num: [
|
|
{
|
|
required: true,
|
|
message: t('views.neUser.auth.numDel') + t('common.unableNull'),
|
|
},
|
|
],
|
|
imsi: [{ required: true, message: 'IMSI' + t('common.unableNull') }],
|
|
})
|
|
);
|
|
|
|
/**
|
|
* 对话框弹出显示为 新增或者修改
|
|
* @param noticeId 网元id, 不传为新增
|
|
*/
|
|
function fnModalVisibleByEdit(row?: Record<string, any>) {
|
|
if (!row) {
|
|
modalStateFrom.resetFields(); //重置表单
|
|
modalState.title = t('common.addText') + t('views.neUser.auth.authInfo');
|
|
modalState.openByEdit = true;
|
|
} else {
|
|
if (modalState.confirmLoading) return;
|
|
const hide = message.loading(t('common.loading'), 0);
|
|
modalState.confirmLoading = true;
|
|
const neId = queryParams.neId || '-';
|
|
getUDMAuth(neId, row.imsi)
|
|
.then(res => {
|
|
if (res.code === RESULT_CODE_SUCCESS) {
|
|
modalState.from = Object.assign(modalState.from, res.data);
|
|
modalState.title =
|
|
t('common.editText') + t('views.neUser.auth.authInfo');
|
|
modalState.openByEdit = true;
|
|
} else {
|
|
message.error(t('common.getInfoFail'), 2);
|
|
}
|
|
})
|
|
.finally(() => {
|
|
hide();
|
|
modalState.confirmLoading = false;
|
|
});
|
|
}
|
|
}
|
|
|
|
/**
|
|
* 对话框弹出显示为 批量删除
|
|
* @param noticeId 网元id, 不传为新增
|
|
*/
|
|
function fnModalVisibleByBatch() {
|
|
modalStateBatchDelFrom.resetFields(); //重置表单
|
|
modalState.title =
|
|
t('views.neUser.auth.batchDelText') + t('views.neUser.auth.authInfo');
|
|
modalState.openByBatchDel = true;
|
|
}
|
|
|
|
/**
|
|
* 对话框弹出确认执行函数
|
|
* 进行表达规则校验
|
|
*/
|
|
function fnModalOk() {
|
|
modalStateFrom
|
|
.validate()
|
|
.then(e => {
|
|
modalState.confirmLoading = true;
|
|
const from = toRaw(modalState.from);
|
|
from.algoIndex = `${from.algoIndex}`;
|
|
from.neId = queryParams.neId || '-';
|
|
const result = from.id
|
|
? updateUDMAuth(from)
|
|
: from.num === 1
|
|
? addUDMAuth(from)
|
|
: batchAddUDMAuth(from, from.num);
|
|
const hide = message.loading(t('common.loading'), 0);
|
|
result
|
|
.then(res => {
|
|
if (res.code === RESULT_CODE_SUCCESS) {
|
|
if (from.num === 1) {
|
|
//新增时
|
|
message.success({
|
|
content: t('common.msgSuccess', { msg: modalState.title }),
|
|
duration: 3,
|
|
});
|
|
fnGetList();
|
|
} else {
|
|
//批量新增时
|
|
const timerS = Math.max(
|
|
Math.ceil(+from.num / 500),
|
|
`${from.num}`.length
|
|
);
|
|
notification.success({
|
|
message: modalState.title,
|
|
description: t('common.operateOk'),
|
|
duration: timerS,
|
|
});
|
|
setTimeout(() => {
|
|
fnGetList(1);
|
|
}, timerS * 1000);
|
|
}
|
|
modalState.openByEdit = false;
|
|
modalStateFrom.resetFields();
|
|
} else {
|
|
if (from.num === 1) {
|
|
message.error({
|
|
content: `${res.msg}`,
|
|
duration: 3,
|
|
});
|
|
} else {
|
|
notification.error({
|
|
message: modalState.title,
|
|
description: res.msg,
|
|
duration: 3,
|
|
});
|
|
}
|
|
}
|
|
})
|
|
.finally(() => {
|
|
hide();
|
|
modalState.confirmLoading = false;
|
|
});
|
|
})
|
|
.catch(e => {
|
|
message.error(t('common.errorFields', { num: e.errorFields.length }), 3);
|
|
});
|
|
}
|
|
|
|
/**
|
|
* 对话框弹出 批量删除确认执行函数
|
|
* 进行表达规则校验
|
|
*/
|
|
function fnBatchDelModalOk() {
|
|
modalStateBatchDelFrom
|
|
.validate()
|
|
.then(e => {
|
|
modalState.confirmLoading = true;
|
|
const from = toRaw(modalState.BatchDelForm);
|
|
const neId = queryParams.neId || '-';
|
|
batchDelUDMAuth(neId, from.imsi, from.num).then(res => {
|
|
if (res.code === RESULT_CODE_SUCCESS) {
|
|
const timerS = Math.ceil(+from.num / 800) + 1;
|
|
notification.success({
|
|
message: modalState.title,
|
|
description: t('common.operateOk'),
|
|
duration: timerS,
|
|
});
|
|
setTimeout(() => {
|
|
modalState.openByBatchDel = false;
|
|
modalState.confirmLoading = false;
|
|
modalStateBatchDelFrom.resetFields();
|
|
fnGetList(1);
|
|
}, timerS * 1000);
|
|
} else {
|
|
modalState.confirmLoading = false;
|
|
notification.error({
|
|
message: modalState.title,
|
|
description: res.msg,
|
|
duration: 3,
|
|
});
|
|
}
|
|
});
|
|
})
|
|
.catch(e => {
|
|
message.error(t('common.errorFields', { num: e.errorFields.length }), 3);
|
|
});
|
|
}
|
|
|
|
/**
|
|
* 批量删除对话框弹出关闭执行函数
|
|
* 进行表达规则校验
|
|
*/
|
|
function fnBatchDelModalCancel() {
|
|
modalState.openByBatchDel = false;
|
|
modalStateBatchDelFrom.resetFields();
|
|
}
|
|
|
|
/**
|
|
* 对话框弹出关闭执行函数
|
|
* 进行表达规则校验
|
|
*/
|
|
function fnModalCancel() {
|
|
modalState.openByEdit = false;
|
|
modalStateFrom.resetFields();
|
|
}
|
|
|
|
/**
|
|
* UDM鉴权用户删除
|
|
* @param imsi 编号imsi
|
|
*/
|
|
function fnRecordDelete(imsi: string) {
|
|
const neId = queryParams.neId;
|
|
if (!neId) return;
|
|
let imsiMsg = imsi;
|
|
if (imsi === '0') {
|
|
imsiMsg = `${tableState.selectedRowKeys[0]}... ${t(
|
|
'views.neUser.auth.numDel'
|
|
)} ${tableState.selectedRowKeys.length}`;
|
|
imsi = tableState.selectedRowKeys.join(',');
|
|
}
|
|
|
|
Modal.confirm({
|
|
title: t('common.tipTitle'),
|
|
content: t('views.neUser.auth.delSure', { imsi: imsiMsg }),
|
|
onOk() {
|
|
modalState.loadDataLoading = true;
|
|
const hide = message.loading(t('common.loading'), 0);
|
|
delUDMAuth(neId, imsi)
|
|
.then(res => {
|
|
if (res.code === RESULT_CODE_SUCCESS) {
|
|
const msgContent = t('common.msgSuccess', {
|
|
msg: t('common.deleteText'),
|
|
});
|
|
message.success({
|
|
content: `${msgContent} : ${imsiMsg}`,
|
|
duration: 3,
|
|
});
|
|
} else {
|
|
message.error({
|
|
content: `${res.msg}`,
|
|
duration: 3,
|
|
});
|
|
}
|
|
})
|
|
.finally(() => {
|
|
hide();
|
|
fnGetList();
|
|
modalState.loadDataLoading = false;
|
|
});
|
|
},
|
|
});
|
|
}
|
|
|
|
/**
|
|
* UDM鉴权用户勾选导出
|
|
*/
|
|
function fnRecordExport(type: string = 'txt') {
|
|
const selectLen = tableState.selectedRowKeys.length;
|
|
if (selectLen <= 0) return;
|
|
const neId = queryParams.neId;
|
|
if (!neId) return;
|
|
const hide = message.loading(t('common.loading'), 0);
|
|
exportUDMAuth({ type: type, neId: neId, imsis: tableState.selectedRowKeys })
|
|
.then(res => {
|
|
if (res.code === RESULT_CODE_SUCCESS) {
|
|
message.success(t('common.msgSuccess', { msg: t('common.export') }), 3);
|
|
saveAs(res.data, `UDMAuth_select_${Date.now()}.${type}`);
|
|
} else {
|
|
message.error(`${res.msg}`, 3);
|
|
}
|
|
})
|
|
.finally(() => {
|
|
hide();
|
|
});
|
|
}
|
|
|
|
/**列表导出全部数据 */
|
|
function fnExportList(type: string) {
|
|
const neId = queryParams.neId;
|
|
if (!neId) return;
|
|
const hide = message.loading(t('common.loading'), 0);
|
|
exportUDMAuth(Object.assign({ type: type }, queryParams))
|
|
.then(res => {
|
|
if (res.code === RESULT_CODE_SUCCESS) {
|
|
message.success(t('common.msgSuccess', { msg: t('common.export') }), 3);
|
|
saveAs(res.data, `UDMAuth_${Date.now()}.${type}`);
|
|
} else {
|
|
message.error(`${res.msg}`, 3);
|
|
}
|
|
})
|
|
.finally(() => {
|
|
hide();
|
|
});
|
|
}
|
|
|
|
/**重新加载数据 */
|
|
function fnLoadData() {
|
|
const neId = queryParams.neId;
|
|
if (tableState.loading || !neId) return;
|
|
modalState.loadDataLoading = true;
|
|
tablePagination.total = 0;
|
|
tableState.data = [];
|
|
tableState.loading = true; // 表格loading
|
|
resetUDMAuth(neId).then(res => {
|
|
if (res.code === RESULT_CODE_SUCCESS) {
|
|
const num = res.data;
|
|
const timerS = Math.ceil(+num / 800) + 3;
|
|
notification.success({
|
|
message: t('views.neUser.auth.loadData'),
|
|
description: t('views.neUser.auth.loadDataTip', { num, timer: timerS }),
|
|
duration: timerS,
|
|
});
|
|
// 延迟10s后关闭loading刷新列表
|
|
setTimeout(() => {
|
|
modalState.loadDataLoading = false;
|
|
tableState.loading = false; // 表格loading
|
|
fnQueryReset();
|
|
}, timerS * 1000);
|
|
} else {
|
|
modalState.loadDataLoading = false;
|
|
tableState.loading = false; // 表格loading
|
|
fnQueryReset();
|
|
message.error({
|
|
content: t('common.getInfoFail'),
|
|
duration: 3,
|
|
});
|
|
}
|
|
});
|
|
}
|
|
|
|
/**查询列表, pageNum初始页数 */
|
|
function fnGetList(pageNum?: number) {
|
|
if (tableState.loading) return;
|
|
tableState.loading = true;
|
|
if (pageNum) {
|
|
queryParams.pageNum = pageNum;
|
|
tablePagination.current = pageNum;
|
|
}
|
|
listUDMAuth(toRaw(queryParams)).then(res => {
|
|
if (res.code === RESULT_CODE_SUCCESS) {
|
|
// 取消勾选
|
|
if (tableState.selectedRowKeys.length > 0) {
|
|
tableState.selectedRowKeys = [];
|
|
}
|
|
const { total, rows } = res.data;
|
|
tablePagination.total = total;
|
|
tableState.data = rows;
|
|
if (
|
|
tablePagination.total <=
|
|
(queryParams.pageNum - 1) * tablePagination.pageSize &&
|
|
queryParams.pageNum !== 1
|
|
) {
|
|
tableState.loading = false;
|
|
fnGetList(queryParams.pageNum - 1);
|
|
}
|
|
}
|
|
tableState.loading = false;
|
|
});
|
|
}
|
|
|
|
/**对话框表格信息导入对象信息状态类型 */
|
|
type ModalUploadImportStateType = {
|
|
/**是否显示 */
|
|
open: boolean;
|
|
/**标题 */
|
|
title: string;
|
|
/**是否上传中 */
|
|
loading: boolean;
|
|
/**上传结果信息 */
|
|
msg: string;
|
|
/**含失败信息 */
|
|
hasFail: boolean;
|
|
/**导入类型 */
|
|
typeOptions: { label: string; value: string }[];
|
|
/**表单 */
|
|
from: { typeVal: string; typeData: any };
|
|
};
|
|
|
|
/**对话框表格信息导入对象信息状态 */
|
|
let uploadImportState: ModalUploadImportStateType = reactive({
|
|
open: false,
|
|
title: t('components.UploadModal.uploadTitle'),
|
|
loading: false,
|
|
msg: '',
|
|
hasFail: false,
|
|
typeOptions: [
|
|
{ label: 'Default', value: 'default' },
|
|
{ label: 'K4', value: 'k4' },
|
|
],
|
|
from: {
|
|
typeVal: 'default',
|
|
typeData: undefined,
|
|
},
|
|
});
|
|
|
|
/**对话框表格信息导入类型选择 */
|
|
function fnModalUploadImportTypeChange() {
|
|
uploadImportState.from.typeData = '';
|
|
uploadImportState.msg = '';
|
|
}
|
|
|
|
/**对话框表格信息导入失败原因 */
|
|
function fnModalUploadImportFailReason() {
|
|
const neId = queryParams.neId;
|
|
if (!neId) return;
|
|
const hide = message.loading(t('common.loading'), 0);
|
|
getNeViewFile({
|
|
neType: 'UDM',
|
|
neId: neId,
|
|
path: '/tmp',
|
|
fileName: 'import_authdata_err_records.txt',
|
|
})
|
|
.then(res => {
|
|
if (res.code === RESULT_CODE_SUCCESS) {
|
|
message.success(t('common.operateOk'), 3);
|
|
const blob = new Blob([res.data], {
|
|
type: 'text/plain',
|
|
});
|
|
saveAs(blob, `import_authdata_err_records_${Date.now()}.txt`);
|
|
} else {
|
|
message.error(`${res.msg}`, 3);
|
|
}
|
|
})
|
|
.finally(() => {
|
|
hide();
|
|
});
|
|
}
|
|
|
|
/**对话框表格信息导入弹出窗口 */
|
|
function fnModalUploadImportOpen() {
|
|
uploadImportState.msg = '';
|
|
uploadImportState.hasFail = false;
|
|
uploadImportState.from.typeVal = 'default';
|
|
uploadImportState.from.typeData = undefined;
|
|
uploadImportState.loading = false;
|
|
uploadImportState.open = true;
|
|
}
|
|
|
|
/**对话框表格信息导入关闭窗口 */
|
|
function fnModalUploadImportClose() {
|
|
uploadImportState.open = false;
|
|
fnGetList(1);
|
|
}
|
|
|
|
/**对话框表格信息导入上传 */
|
|
function fnModalUploadImportUpload(file: File) {
|
|
const neId = queryParams.neId;
|
|
if (!neId) {
|
|
return Promise.reject('Unknown network element');
|
|
}
|
|
const hide = message.loading(t('common.loading'), 0);
|
|
uploadImportState.loading = true;
|
|
// 上传文件
|
|
let formData = new FormData();
|
|
formData.append('file', file);
|
|
formData.append('subPath', 'import');
|
|
uploadFile(formData)
|
|
.then(res => {
|
|
if (res.code === RESULT_CODE_SUCCESS) {
|
|
return res.data.filePath;
|
|
} else {
|
|
uploadImportState.msg = res.msg;
|
|
uploadImportState.loading = false;
|
|
return '';
|
|
}
|
|
})
|
|
.then((filePath: string) => {
|
|
if (!filePath) return;
|
|
// 文件导入
|
|
return importUDMAuth({
|
|
neId: neId,
|
|
uploadPath: filePath,
|
|
...uploadImportState.from,
|
|
});
|
|
})
|
|
.then(res => {
|
|
if (!res) return;
|
|
uploadImportState.msg = res.msg;
|
|
const regex = /fail num: (\d+)/;
|
|
const match = res.msg.match(regex);
|
|
if (match) {
|
|
const failNum = Number(match[1]);
|
|
uploadImportState.hasFail = failNum > 0;
|
|
} else {
|
|
uploadImportState.hasFail = false;
|
|
}
|
|
})
|
|
.finally(() => {
|
|
hide();
|
|
uploadImportState.loading = false;
|
|
});
|
|
}
|
|
|
|
/**对话框表格信息导入模板 */
|
|
function fnModalDownloadImportTemplate() {
|
|
const hide = message.loading(t('common.loading'), 0);
|
|
|
|
const baseUrl = import.meta.env.VITE_HISTORY_BASE_URL;
|
|
const templateUrl = `${
|
|
baseUrl.length === 1 && baseUrl.indexOf('/') === 0
|
|
? ''
|
|
: baseUrl.indexOf('/') === -1
|
|
? '/' + baseUrl
|
|
: baseUrl
|
|
}/neDataImput`;
|
|
saveAs(
|
|
`${templateUrl}/udm_auth_template.txt`,
|
|
`import_udmauth_template_${Date.now()}.txt`
|
|
);
|
|
|
|
hide();
|
|
}
|
|
|
|
onMounted(() => {
|
|
// 获取网元网元列表
|
|
useNeInfoStore()
|
|
.fnNelist()
|
|
.then(res => {
|
|
if (res.code === RESULT_CODE_SUCCESS) {
|
|
if (res.data.length > 0) {
|
|
let arr: Record<string, any>[] = [];
|
|
res.data.forEach((v: any) => {
|
|
if (v.neType === 'UDM') {
|
|
arr.push({ value: v.neId, label: v.neName });
|
|
}
|
|
});
|
|
neOtions.value = arr;
|
|
if (arr.length > 0) {
|
|
queryParams.neId = arr[0].value;
|
|
}
|
|
}
|
|
} else {
|
|
message.warning({
|
|
content: t('common.noData'),
|
|
duration: 2,
|
|
});
|
|
}
|
|
})
|
|
.finally(() => {
|
|
// 获取列表数据
|
|
fnGetList();
|
|
});
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<PageContainer>
|
|
<a-card
|
|
v-show="tableState.seached"
|
|
:bordered="false"
|
|
:body-style="{ marginBottom: '24px', paddingBottom: 0 }"
|
|
>
|
|
<!-- 表格搜索栏 -->
|
|
<a-form :model="queryParams" name="queryParams" layout="horizontal">
|
|
<a-row :gutter="16">
|
|
<a-col :lg="6" :md="12" :xs="24">
|
|
<a-form-item :label="t('views.neUser.auth.neType')" name="neId ">
|
|
<a-select
|
|
v-model:value="queryParams.neId"
|
|
:options="neOtions"
|
|
:placeholder="t('common.selectPlease')"
|
|
@change="fnGetList(1)"
|
|
/>
|
|
</a-form-item>
|
|
</a-col>
|
|
<a-col :lg="6" :md="12" :xs="24">
|
|
<a-form-item label="IMSI" name="imsi">
|
|
<a-input
|
|
v-model:value="queryParams.imsi"
|
|
allow-clear
|
|
:maxlength="15"
|
|
:placeholder="t('common.inputPlease')"
|
|
></a-input>
|
|
</a-form-item>
|
|
</a-col>
|
|
<a-col :lg="6" :md="12" :xs="24">
|
|
<a-form-item>
|
|
<a-space :size="8">
|
|
<a-button type="primary" @click.prevent="fnGetList(1)">
|
|
<template #icon>
|
|
<SearchOutlined />
|
|
</template>
|
|
{{ t('common.search') }}
|
|
</a-button>
|
|
<a-button type="default" @click.prevent="fnQueryReset">
|
|
<template #icon>
|
|
<ClearOutlined />
|
|
</template>
|
|
{{ t('common.reset') }}
|
|
</a-button>
|
|
</a-space>
|
|
</a-form-item>
|
|
</a-col>
|
|
</a-row>
|
|
</a-form>
|
|
</a-card>
|
|
|
|
<a-card :bordered="false" :body-style="{ padding: '0px' }">
|
|
<!-- 插槽-卡片左侧侧 -->
|
|
<template #title>
|
|
<a-flex wrap="wrap" gap="small">
|
|
<a-button type="primary" @click.prevent="fnModalVisibleByEdit()">
|
|
<template #icon>
|
|
<PlusOutlined />
|
|
</template>
|
|
{{ t('common.addText') }}
|
|
</a-button>
|
|
|
|
<a-button
|
|
type="primary"
|
|
danger
|
|
ghost
|
|
@click.prevent="fnModalVisibleByBatch()"
|
|
>
|
|
<template #icon>
|
|
<DeleteOutlined />
|
|
</template>
|
|
{{ t('views.neUser.auth.batchDelText') }}
|
|
</a-button>
|
|
|
|
<a-popconfirm
|
|
:title="t('views.neUser.auth.loadDataConfirm')"
|
|
:ok-text="t('common.ok')"
|
|
:cancel-text="t('common.cancel')"
|
|
:disabled="modalState.loadDataLoading"
|
|
@confirm="fnLoadData"
|
|
>
|
|
<a-button
|
|
type="dashed"
|
|
danger
|
|
:disabled="modalState.loadDataLoading"
|
|
:loading="modalState.loadDataLoading"
|
|
>
|
|
<template #icon><SyncOutlined /></template>
|
|
{{ t('views.neUser.auth.loadData') }}
|
|
</a-button>
|
|
</a-popconfirm>
|
|
|
|
<a-button type="dashed" @click.prevent="fnModalUploadImportOpen">
|
|
<template #icon><ImportOutlined /></template>
|
|
{{ t('views.neUser.auth.import') }}
|
|
</a-button>
|
|
|
|
<a-popconfirm
|
|
:title="t('views.neUser.auth.exportConfirm')"
|
|
placement="topRight"
|
|
ok-text="TXT"
|
|
ok-type="default"
|
|
@confirm="fnExportList('txt')"
|
|
>
|
|
<a-button type="dashed">
|
|
<template #icon><ExportOutlined /></template>
|
|
{{ t('views.neUser.auth.export') }}
|
|
</a-button>
|
|
</a-popconfirm>
|
|
|
|
<a-button
|
|
type="default"
|
|
danger
|
|
:disabled="tableState.selectedRowKeys.length <= 0"
|
|
:loading="modalState.loadDataLoading"
|
|
@click.prevent="fnRecordDelete('0')"
|
|
>
|
|
<template #icon><DeleteOutlined /></template>
|
|
{{ t('views.neUser.auth.checkDel') }}
|
|
</a-button>
|
|
|
|
<a-popconfirm
|
|
:title="t('views.neUser.auth.checkExportConfirm')"
|
|
placement="topRight"
|
|
ok-text="TXT"
|
|
ok-type="default"
|
|
@confirm="fnRecordExport('txt')"
|
|
:disabled="tableState.selectedRowKeys.length <= 0"
|
|
>
|
|
<a-button
|
|
type="default"
|
|
:disabled="tableState.selectedRowKeys.length <= 0"
|
|
>
|
|
<template #icon><ExportOutlined /></template>
|
|
{{ t('views.neUser.auth.checkExport') }}
|
|
</a-button>
|
|
</a-popconfirm>
|
|
</a-flex>
|
|
</template>
|
|
|
|
<!-- 插槽-卡片右侧 -->
|
|
<template #extra>
|
|
<a-space :size="8" align="center">
|
|
<a-tooltip>
|
|
<template #title>{{ t('common.searchBarText') }}</template>
|
|
<a-switch
|
|
v-model:checked="tableState.seached"
|
|
:checked-children="t('common.switch.show')"
|
|
:un-checked-children="t('common.switch.hide')"
|
|
size="small"
|
|
/>
|
|
</a-tooltip>
|
|
<a-tooltip>
|
|
<template #title>{{ t('common.reloadText') }}</template>
|
|
<a-button type="text" @click.prevent="fnGetList()">
|
|
<template #icon><ReloadOutlined /></template>
|
|
</a-button>
|
|
</a-tooltip>
|
|
<TableColumnsDnd
|
|
cache-id="udmAuthData"
|
|
:columns="tableColumns"
|
|
v-model:columns-dnd="tableColumnsDnd"
|
|
></TableColumnsDnd>
|
|
<a-tooltip placement="topRight">
|
|
<template #title>{{ t('common.sizeText') }}</template>
|
|
<a-dropdown placement="bottomRight" trigger="click">
|
|
<a-button type="text">
|
|
<template #icon><ColumnHeightOutlined /></template>
|
|
</a-button>
|
|
<template #overlay>
|
|
<a-menu
|
|
: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>
|
|
</template>
|
|
</a-dropdown>
|
|
</a-tooltip>
|
|
</a-space>
|
|
</template>
|
|
|
|
<!-- 表格列表 -->
|
|
<a-table
|
|
class="table"
|
|
row-key="imsi"
|
|
:columns="tableColumnsDnd"
|
|
:loading="tableState.loading"
|
|
:data-source="tableState.data"
|
|
:size="tableState.size"
|
|
:pagination="tablePagination"
|
|
:scroll="{ y: 'calc(100vh - 480px)' }"
|
|
@change="fnTableChange"
|
|
@resizeColumn="(w:number, col:any) => (col.width = w)"
|
|
:row-selection="{
|
|
type: 'checkbox',
|
|
selectedRowKeys: tableState.selectedRowKeys,
|
|
onChange: fnTableSelectedRowKeys,
|
|
}"
|
|
>
|
|
<template #bodyCell="{ column, record }">
|
|
<template v-if="column.key === 'imsi'">
|
|
<a-space :size="8" align="center">
|
|
<a-tooltip>
|
|
<template #title>{{ t('common.editText') }}</template>
|
|
<a-button
|
|
type="link"
|
|
@click.prevent="fnModalVisibleByEdit(record)"
|
|
>
|
|
<template #icon>
|
|
<FormOutlined />
|
|
</template>
|
|
</a-button>
|
|
</a-tooltip>
|
|
<a-tooltip>
|
|
<template #title>{{ t('common.deleteText') }}</template>
|
|
<a-button
|
|
type="link"
|
|
@click.prevent="fnRecordDelete(record.imsi)"
|
|
>
|
|
<template #icon>
|
|
<DeleteOutlined />
|
|
</template>
|
|
</a-button>
|
|
</a-tooltip>
|
|
</a-space>
|
|
</template>
|
|
</template>
|
|
</a-table>
|
|
</a-card>
|
|
|
|
<!-- 新增框或修改框 -->
|
|
<ProModal
|
|
:drag="true"
|
|
:width="800"
|
|
:destroyOnClose="true"
|
|
:keyboard="false"
|
|
:mask-closable="false"
|
|
:open="modalState.openByEdit"
|
|
:title="modalState.title"
|
|
:confirm-loading="modalState.confirmLoading"
|
|
@ok="fnModalOk"
|
|
@cancel="fnModalCancel"
|
|
>
|
|
<a-form
|
|
name="modalStateFrom"
|
|
layout="horizontal"
|
|
:label-col="{ span: 6 }"
|
|
:labelWrap="true"
|
|
>
|
|
<a-row v-show="!modalState.from.id">
|
|
<a-col :lg="12" :md="12" :xs="24">
|
|
<a-form-item
|
|
label="IMSI"
|
|
name="imsi"
|
|
v-bind="modalStateFrom.validateInfos.imsi"
|
|
>
|
|
<a-input
|
|
v-model:value="modalState.from.imsi"
|
|
allow-clear
|
|
:maxlength="15"
|
|
:disabled="!!modalState.from.id"
|
|
>
|
|
<template #prefix>
|
|
<a-tooltip placement="topLeft">
|
|
<template #title>
|
|
{{ t('views.neUser.auth.imsiTip') }}<br />
|
|
{{ t('views.neUser.auth.imsiTip1') }}<br />
|
|
{{ t('views.neUser.auth.imsiTip2') }}<br />
|
|
{{ t('views.neUser.auth.imsiTip3') }}
|
|
</template>
|
|
<InfoCircleOutlined style="opacity: 0.45; color: inherit" />
|
|
</a-tooltip>
|
|
</template>
|
|
</a-input>
|
|
</a-form-item>
|
|
</a-col>
|
|
<a-col :lg="12" :md="12" :xs="24">
|
|
<a-form-item
|
|
:label="t('views.neUser.auth.numAdd')"
|
|
name="num"
|
|
v-bind="modalStateFrom.validateInfos.num"
|
|
:label-col="{ span: 10 }"
|
|
:labelWrap="false"
|
|
>
|
|
<a-input-number
|
|
v-model:value="modalState.from.num"
|
|
style="width: 100%"
|
|
:min="1"
|
|
:max="500"
|
|
:maxlength="3"
|
|
placeholder="<=500"
|
|
></a-input-number>
|
|
</a-form-item>
|
|
</a-col>
|
|
</a-row>
|
|
|
|
<a-row>
|
|
<a-col :lg="12" :md="12" :xs="24">
|
|
<a-form-item
|
|
label="AMF"
|
|
name="amf"
|
|
v-bind="modalStateFrom.validateInfos.amf"
|
|
>
|
|
<a-input
|
|
v-model:value="modalState.from.amf"
|
|
allow-clear
|
|
:maxlength="4"
|
|
>
|
|
<template #prefix>
|
|
<a-tooltip placement="topLeft">
|
|
<template #title>
|
|
{{ t('views.neUser.auth.amfTip') }}
|
|
</template>
|
|
<InfoCircleOutlined style="opacity: 0.45; color: inherit" />
|
|
</a-tooltip>
|
|
</template>
|
|
</a-input>
|
|
</a-form-item>
|
|
</a-col>
|
|
<a-col :lg="12" :md="12" :xs="24">
|
|
<a-form-item
|
|
label="Algo Index"
|
|
name="algo"
|
|
v-bind="modalStateFrom.validateInfos.algoIndex"
|
|
:label-col="{ span: 10 }"
|
|
:labelWrap="false"
|
|
>
|
|
<a-input-number
|
|
v-model:value="modalState.from.algoIndex"
|
|
style="width: 100%"
|
|
:min="0"
|
|
:max="15"
|
|
placeholder="0 ~ 15"
|
|
>
|
|
<template #prefix>
|
|
<a-tooltip placement="topLeft">
|
|
<template #title>
|
|
{{ t('views.neUser.auth.algoIndexTip') }}
|
|
</template>
|
|
<InfoCircleOutlined style="opacity: 0.45; color: inherit" />
|
|
</a-tooltip>
|
|
</template>
|
|
</a-input-number>
|
|
</a-form-item>
|
|
</a-col>
|
|
</a-row>
|
|
|
|
<a-form-item
|
|
label="KI"
|
|
name="ki"
|
|
v-bind="modalStateFrom.validateInfos.ki"
|
|
:label-col="{ span: 3 }"
|
|
:labelWrap="true"
|
|
>
|
|
<a-input
|
|
v-model:value="modalState.from.ki"
|
|
allow-clear
|
|
:maxlength="32"
|
|
:disabled="!!modalState.from.id"
|
|
>
|
|
<template #prefix>
|
|
<a-tooltip placement="topLeft">
|
|
<template #title>
|
|
{{ t('views.neUser.auth.kiTip') }}
|
|
</template>
|
|
<InfoCircleOutlined style="opacity: 0.45; color: inherit" />
|
|
</a-tooltip>
|
|
</template>
|
|
</a-input>
|
|
</a-form-item>
|
|
<a-form-item
|
|
label="OPC"
|
|
name="opc"
|
|
v-bind="modalStateFrom.validateInfos.opc"
|
|
:label-col="{ span: 3 }"
|
|
:labelWrap="true"
|
|
>
|
|
<a-input
|
|
v-model:value="modalState.from.opc"
|
|
allow-clear
|
|
:maxlength="32"
|
|
:disabled="!!modalState.from.id"
|
|
>
|
|
<template #prefix>
|
|
<a-tooltip placement="topLeft">
|
|
<template #title>
|
|
{{ t('views.neUser.auth.opcTip') }}
|
|
</template>
|
|
<InfoCircleOutlined style="opacity: 0.45; color: inherit" />
|
|
</a-tooltip>
|
|
</template>
|
|
</a-input>
|
|
</a-form-item>
|
|
</a-form>
|
|
</ProModal>
|
|
|
|
<!-- 批量删除框 -->
|
|
<ProModal
|
|
:drag="true"
|
|
:destroyOnClose="true"
|
|
:keyboard="false"
|
|
:mask-closable="false"
|
|
:open="modalState.openByBatchDel"
|
|
:title="modalState.title"
|
|
:confirm-loading="modalState.confirmLoading"
|
|
@ok="fnBatchDelModalOk"
|
|
@cancel="fnBatchDelModalCancel"
|
|
>
|
|
<a-form
|
|
name="modalStateBatchDelFrom"
|
|
layout="horizontal"
|
|
:label-col="{ span: 8 }"
|
|
:labelWrap="true"
|
|
>
|
|
<a-row>
|
|
<a-col :lg="24" :md="24" :xs="24">
|
|
<a-form-item
|
|
:label="t('views.neUser.auth.startIMSI')"
|
|
name="imsi"
|
|
v-bind="modalStateBatchDelFrom.validateInfos.imsi"
|
|
>
|
|
<a-input
|
|
v-model:value="modalState.BatchDelForm.imsi"
|
|
allow-clear
|
|
:maxlength="15"
|
|
>
|
|
<template #prefix>
|
|
<a-tooltip placement="topLeft">
|
|
<template #title>
|
|
{{ t('views.neUser.auth.imsiTip') }}<br />
|
|
{{ t('views.neUser.auth.imsiTip1') }}<br />
|
|
{{ t('views.neUser.auth.imsiTip2') }}<br />
|
|
{{ t('views.neUser.auth.imsiTip3') }}
|
|
</template>
|
|
<InfoCircleOutlined style="opacity: 0.45; color: inherit" />
|
|
</a-tooltip>
|
|
</template>
|
|
</a-input>
|
|
</a-form-item>
|
|
</a-col>
|
|
<a-col :lg="24" :md="24" :xs="24">
|
|
<a-form-item
|
|
:label="t('views.neUser.auth.numDel')"
|
|
name="num"
|
|
v-bind="modalStateBatchDelFrom.validateInfos.num"
|
|
>
|
|
<a-input-number
|
|
v-model:value="modalState.BatchDelForm.num"
|
|
style="width: 100%"
|
|
:min="1"
|
|
:max="500"
|
|
:maxlength="3"
|
|
placeholder="<=500"
|
|
></a-input-number>
|
|
</a-form-item>
|
|
</a-col>
|
|
</a-row>
|
|
</a-form>
|
|
</ProModal>
|
|
|
|
<!-- 上传导入表格数据文件框 -->
|
|
<UploadModal
|
|
:title="uploadImportState.title"
|
|
:loading="uploadImportState.loading"
|
|
@upload="fnModalUploadImportUpload"
|
|
@close="fnModalUploadImportClose"
|
|
v-model:open="uploadImportState.open"
|
|
:ext="['.txt']"
|
|
:size="10"
|
|
>
|
|
<template #default>
|
|
<a-row justify="space-between" align="middle">
|
|
<a-col :span="12">
|
|
<a-radio-group
|
|
v-model:value="uploadImportState.from.typeVal"
|
|
:options="uploadImportState.typeOptions"
|
|
@change="fnModalUploadImportTypeChange"
|
|
/>
|
|
</a-col>
|
|
<a-col>
|
|
<a-button
|
|
type="link"
|
|
:title="t('views.neData.common.importTemplate')"
|
|
@click.prevent="fnModalDownloadImportTemplate"
|
|
>
|
|
{{ t('views.neData.common.importTemplate') }}
|
|
</a-button>
|
|
</a-col>
|
|
</a-row>
|
|
|
|
<a-input-password
|
|
v-if="uploadImportState.from.typeVal === 'k4'"
|
|
v-model:value="uploadImportState.from.typeData"
|
|
:placeholder="t('common.inputPlease')"
|
|
/>
|
|
<a-alert
|
|
:message="uploadImportState.msg"
|
|
:type="uploadImportState.hasFail ? 'warning' : 'info'"
|
|
v-show="uploadImportState.msg.length > 0"
|
|
>
|
|
<template #action>
|
|
<a-button
|
|
size="small"
|
|
type="link"
|
|
danger
|
|
@click="fnModalUploadImportFailReason"
|
|
v-if="uploadImportState.hasFail"
|
|
>
|
|
{{ t('views.neUser.auth.importFail') }}
|
|
</a-button>
|
|
</template>
|
|
</a-alert>
|
|
</template>
|
|
</UploadModal>
|
|
</PageContainer>
|
|
</template>
|
|
|
|
<style lang="less" scoped>
|
|
.table :deep(.ant-pagination) {
|
|
padding: 0 24px;
|
|
}
|
|
</style>
|