feat: 信令分析

This commit is contained in:
TsMask
2023-09-23 19:14:39 +08:00
parent 15bd6f5856
commit 0bc2be52ef
3 changed files with 923 additions and 405 deletions

74
src/api/trace/analysis.ts Normal file
View File

@@ -0,0 +1,74 @@
import { RESULT_CODE_SUCCESS } from '@/constants/result-constants';
import { request } from '@/plugins/http-fetch';
import { parseObjLineToHump } from '@/utils/parse-utils';
/**
* 查询信令列表
* @param query 查询参数
* @returns object
*/
export async function listTraceData(query: Record<string, any>) {
let totalSQL = 'select count(*) as total from trace_data where 1=1 ';
let rowsSQL = 'select * from trace_data where 1=1 ';
// 查询
let querySQL = '';
if (query.imsi) {
querySQL += ` and imsi = '${query.imsi}' `;
}
// 分页
const pageNum = query.pageNum - 1;
const limtSql = ` limit ${pageNum},${query.pageSize} `;
// 发起请求
const result = await request({
url: `/databaseManagement/v1/omc_db/trace_data`,
method: 'get',
params: {
totalSQL: totalSQL + querySQL,
rowsSQL: rowsSQL + querySQL + limtSql,
},
});
// 解析数据
if (result.code === RESULT_CODE_SUCCESS) {
const data: DataList = {
total: 0,
rows: [],
code: result.code,
msg: result.msg,
};
result.data.data.forEach((item: any) => {
const itemData = item['trace_data'];
if (Array.isArray(itemData)) {
if (itemData.length === 1 && itemData[0]['total']) {
data.total = itemData[0]['total'];
} else {
data.rows = itemData.map(v => parseObjLineToHump(v));
}
}
});
return data;
}
return result;
}
// 网元抓包pcap文件下载
export function tcpdumpPcapDownload(data: Record<string, string>) {
return request({
url: '/traceManagement/v1/tcpdumpPcapDownload',
method: 'post',
data: data,
responseType: 'blob',
});
}
// 网元抓包生成pcap
export function tcpdumpNeUPFTask(data: Record<string, string>) {
return request({
url: '/traceManagement/v1/tcpdumpNeUPFTask',
method: 'post',
data: data,
});
}

View File

@@ -1,236 +1,432 @@
<script lang="ts" setup> <script setup lang="ts">
import { reactive } from 'vue'; import { useRoute } from 'vue-router';
import { reactive, ref, onMounted, toRaw } from 'vue';
import { PageContainer } from '@ant-design-vue/pro-layout'; import { PageContainer } from '@ant-design-vue/pro-layout';
import { Modal } from 'ant-design-vue/lib/components'; import { message, Modal } from 'ant-design-vue/lib';
import message from 'ant-design-vue/lib/message'; import { SizeType } from 'ant-design-vue/lib/config-provider';
import { FileType, UploadFile } from 'ant-design-vue/lib/upload/interface'; import { MenuInfo } from 'ant-design-vue/lib/menu/src/interface';
import { UploadRequestOption } from 'ant-design-vue/lib/vc-upload/interface'; import { ColumnsType } from 'ant-design-vue/lib/table';
import saveAs from 'file-saver'; import { parseDateToStr } from '@/utils/date-utils';
import { import { RESULT_CODE_SUCCESS } from '@/constants/result-constants';
downloadFile, import { downloadNeBackup } from '@/api/configManage/backupManage';
downloadFileChunk, import { saveAs } from 'file-saver';
uploadFile, import useI18n from '@/hooks/useI18n';
uploadFileChunk, import { listTraceData } from '@/api/trace/analysis';
} from '@/api/tool/file'; const { t } = useI18n();
const route = useRoute();
let state = reactive<{ /**路由标题 */
/**上传状态 */ let title = ref<string>((route.meta.title as string) ?? '标题');
loading: boolean;
uploadFilePath: string; /**查询参数 */
downloadFilePath: string; let queryParams = reactive({
/*文件列表 */ /**移动号 */
fileList: UploadFile<any>[]; imsi: '',
}>({ /**当前页数 */
loading: false, pageNum: 1,
uploadFilePath: '', /**每页条数 */
downloadFilePath: '', pageSize: 20,
fileList: [
// {
// uid: '1',
// percent: 100,
// status: 'success',
// name: 'xxx.png',
// url: '/upload/default/2023/06/xxx.png',
// thumbUrl: '/upload/default/2023/06/xxx.png',
// },
],
}); });
/**下载文件 */ /**查询参数重置 */
function fnDownload() { function fnQueryReset() {
const key = 'downloadFile'; queryParams = Object.assign(queryParams, {
message.loading({ content: '请稍等...', key }); imsi: '',
const filePath = state.downloadFilePath; pageNum: 1,
if (!filePath) return; pageSize: 20,
downloadFile(filePath).then(res => {
if (res.code === 200) {
message.success({
content: `已完成下载`,
key,
duration: 2,
});
const fileName = filePath.substring(filePath.lastIndexOf('/') + 1);
saveAs(res.data, fileName);
} else {
message.error({
content: `${res.msg}`,
key,
duration: 2,
});
}
}); });
tablePagination.current = 1;
tablePagination.pageSize = 20;
fnGetList();
} }
/**下载切片文件 */ /**表格状态类型 */
function fnDownloadChunk() { type TabeStateType = {
const key = 'downloadFileChunk'; /**加载等待 */
message.loading({ content: '请稍等...', key }); loading: boolean;
const filePath = state.downloadFilePath; /**紧凑型 */
downloadFileChunk(filePath, 5).then(blob => { size: SizeType;
console.log(blob); /**搜索栏 */
if (blob.size === 0) { seached: boolean;
message.error({ /**记录数据 */
content: `文件读取失败`, data: object[];
key, };
duration: 2,
}); /**表格状态 */
} else { let tableState: TabeStateType = reactive({
message.success({ loading: false,
content: `已完成下载`, size: 'middle',
key, seached: true,
duration: 2, data: [],
}); });
const fileName = filePath.substring(filePath.lastIndexOf('/') + 1);
saveAs(blob, fileName); /**表格字段列 */
} let tableColumns: ColumnsType = [
}); {
title: '跟踪任务标记',
dataIndex: 'taskId',
align: 'center',
},
{
title: 'IMSI',
dataIndex: 'imsi',
align: 'center',
},
{
title: 'MSISDN',
dataIndex: 'msisdn',
align: 'center',
},
{
title: '源地址',
dataIndex: 'srcAddr',
align: 'center',
},
{
title: '目标地址',
dataIndex: 'dstAddr',
align: 'center',
},
{
title: '信令类型',
dataIndex: 'ifType',
align: 'center',
},
{
title: '消息类型',
dataIndex: 'msgType',
align: 'center',
},
{
title: '消息元',
dataIndex: 'msgDirect',
align: 'center',
},
{
title: '记录时间',
dataIndex: 'timestamp',
align: 'center',
customRender(opt) {
if (!opt.value) return '';
return parseDateToStr(opt.value);
},
},
{
title: t('common.operate'),
key: 'id',
align: 'center',
},
];
/**表格分页器参数 */
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;
} }
/**上传前检查或转换压缩 */ /**信息文件下载 */
function fnBeforeUpload(file: FileType) { function fnDownloadFile(row: Record<string, any>) {
if (state.loading) return false;
const isJpgOrPng = ['image/jpeg', 'image/png'].includes(file.type);
if (!isJpgOrPng) {
message.error('只支持上传图片格式jpg、png', 3);
}
const isLt2M = file.size / 1024 / 1024 < 2;
if (!isLt2M) {
message.error('图片文件大小必须小于 2MB', 3);
}
return isJpgOrPng && isLt2M;
}
/**上传文件 */
function fnUpload(up: UploadRequestOption) {
Modal.confirm({ Modal.confirm({
title: '提示', title: '提示',
content: `确认要上传文件?`, content: `确认下载记录编号为 【${row.id}】 的数据项文件?`,
onOk() { onOk() {
// 发送请求 const key = 'downloadNeBackup';
const hide = message.loading('请稍等...', 0); message.loading({ content: t('common.loading'), key });
state.loading = true; downloadNeBackup(toRaw(row)).then(res => {
let formData = new FormData(); if (res.code === RESULT_CODE_SUCCESS) {
formData.append('file', up.file); message.success({
formData.append('subPath', 'default'); content: `已完成下载`,
uploadFile(formData).then(res => { key,
state.loading = false; duration: 2,
hide(); });
if (res.code === 200) { saveAs(res.data, `user_${Date.now()}.xlsx`);
message.success('文件上传成功', 3);
state.uploadFilePath = res.data.url;
state.downloadFilePath = res.data.fileName;
} else { } else {
message.error(res.msg, 3); message.error({
content: `${res.msg}`,
key,
duration: 2,
});
} }
}); });
}, },
}); });
} }
/**上传分片 */ /**查询备份信息列表 */
function fnUploadChunk(up: UploadRequestOption) { function fnGetList() {
const fileData = up.file as File; if (tableState.loading) return;
const item = state.fileList.find(f => f.name === fileData.name); tableState.loading = true;
Modal.confirm({ listTraceData(toRaw(queryParams)).then(res => {
title: '提示', console.log(res);
content: `确认要上传文件吗?`, if (res.code === RESULT_CODE_SUCCESS && Array.isArray(res.rows)) {
onOk() { tablePagination.total = res.total;
// 发送请求 tableState.data = res.rows;
const hide = message.loading('请稍等...', 0); }
uploadFileChunk(fileData, 4, 'default').then(res => { tableState.loading = false;
hide();
if (res.code === 200) {
message.success('文件上传成功', 3);
if (item) {
item.url = res.data.url;
item.name = res.data.newFileName;
item.percent = 100;
item.status = 'done';
}
} else {
message.error(res.msg, 3);
state.fileList.splice(state.fileList.length - 1, 1);
}
});
},
onCancel() {
if (item) {
state.fileList.splice(state.fileList.length - 1, 1);
}
},
}); });
} }
/**抽屉对象信息状态类型 */
type ModalStateType = {
/**抽屉框是否显示 */
visible: boolean;
/**标题 */
title: string;
/**表单数据 */
from: Record<string, any>;
};
/**抽屉对象信息状态 */
let modalState: ModalStateType = reactive({
visible: false,
title: '信令信息',
from: {
rawData: '',
},
});
/**
* 对话框弹出显示
* @param row 记录信息
*/
function fnModalVisible(row: Record<string, any>) {
// 进制转数据
const hexString = parseBase64Data(row.rawMsg);
const rawData = convertToReadableFormat(hexString);
modalState.from.rawData = rawData;
modalState.title = `任务 ${row.taskId} 信令信息`;
modalState.visible = true;
}
/**
* 对话框弹出关闭
*/
function fnModalVisibleClose() {
modalState.visible = false;
}
// 将Base64编码解码为字节数组
function parseBase64Data(hexData: string) {
// 将Base64编码解码为字节数组
const byteString = atob(hexData);
const byteArray = new Uint8Array(byteString.length);
for (let i = 0; i < byteString.length; i++) {
byteArray[i] = byteString.charCodeAt(i);
}
// 将每一个字节转换为2位16进制数表示并拼接起来
let hexString = '';
for (let i = 0; i < byteArray.length; i++) {
const hex = byteArray[i].toString(16);
hexString += hex.length === 1 ? '0' + hex : hex;
}
return hexString;
}
// 转换十六进制字节流为可读格式和ASCII码表示
function convertToReadableFormat(hexString: string) {
let result = '';
let asciiResult = '';
let arr = [];
let row = 0;
for (let i = 0; i < hexString.length; i += 2) {
const hexChars = hexString.substring(i, i + 2);
const decimal = parseInt(hexChars, 16);
const asciiChar =
decimal >= 32 && decimal <= 126 ? String.fromCharCode(decimal) : '.';
result += hexChars + ' ';
asciiResult += asciiChar;
if ((i + 2) % 32 === 0) {
arr.push({
row: row,
code: result,
asciiText: asciiResult,
});
result = '';
asciiResult = '';
row += 10;
}
if (2 + i == hexString.length) {
arr.push({
row: row,
code: result,
asciiText: asciiResult,
});
result = '';
asciiResult = '';
row += 10;
}
}
return arr;
}
onMounted(() => {
// 获取列表数据
fnGetList();
});
</script> </script>
<template> <template>
<PageContainer title="上传示例"> <PageContainer :title="title">
<a-row :gutter="16"> <a-card
<a-col :lg="12" :md="12" :xs="24"> v-show="tableState.seached"
<a-card title="普通文件" style="margin-bottom: 16px"> :bordered="false"
<a-row :gutter="8"> :body-style="{ marginBottom: '24px', paddingBottom: 0 }"
<a-col :span="24" style="margin-bottom: 16px"> >
<!-- 表格搜索栏 -->
<a-form :model="queryParams" name="queryParams" layout="horizontal">
<a-row :gutter="16">
<a-col :lg="6" :md="12" :xs="24">
<a-form-item label="IMSI" name="imsi">
<a-input <a-input
style="margin-bottom: 16px" v-model:value="queryParams.imsi"
type="text" :allow-clear="true"
placeholder="输入资源文件地址" placeholder="查询IMSI"
v-model:value="state.downloadFilePath" ></a-input>
> </a-form-item>
<template #suffix> </a-col>
<a-button type="primary" @click="fnDownload"> <a-col :lg="6" :md="12" :xs="24">
普通下载 <a-form-item>
</a-button> <a-space :size="8">
</template> <a-button type="primary" @click.prevent="fnGetList">
</a-input> <template #icon><SearchOutlined /></template>
<a-input {{ t('common.search') }}
type="text" </a-button>
placeholder="输入资源文件地址" <a-button type="default" @click.prevent="fnQueryReset">
v-model:value="state.downloadFilePath" <template #icon><ClearOutlined /></template>
> {{ t('common.reset') }}
<template #suffix> </a-button>
<a-button type="primary" @click="fnDownloadChunk">
分片下载
</a-button>
</template>
</a-input>
</a-col>
<a-col :span="24">
<a-space direction="vertical" :size="16">
<a-upload
name="file"
list-type="picture"
:max-count="1"
:show-upload-list="false"
:before-upload="fnBeforeUpload"
:custom-request="fnUpload"
>
<a-button type="default" :loading="state.loading">
选择文件
</a-button>
</a-upload>
<a-image
:width="128"
:height="128"
:src="state.uploadFilePath"
/>
</a-space> </a-space>
</a-col> </a-form-item>
</a-row> </a-col>
</a-card> </a-row>
</a-col> </a-form>
<a-col :lg="12" :md="12" :xs="24"> </a-card>
<a-card title="大文件分片上传" style="margin-bottom: 16px">
<a-upload <a-card :bordered="false" :body-style="{ padding: '0px' }">
v-model:file-list="state.fileList" <!-- 插槽-卡片左侧侧 -->
name="file" <template #title> </template>
list-type="picture"
:custom-request="fnUploadChunk" <!-- 插槽-卡片右侧 -->
> <template #extra>
<a-button> 选择文件 </a-button> <a-space :size="8" align="center">
</a-upload> <a-tooltip>
</a-card> <template #title>{{ t('common.searchBarText') }}</template>
</a-col> <a-switch
</a-row> 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>
<a-tooltip>
<template #title>{{ t('common.sizeText') }}</template>
<a-dropdown 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="id"
:columns="tableColumns"
:loading="tableState.loading"
:data-source="tableState.data"
:size="tableState.size"
:pagination="tablePagination"
:scroll="{ x: true }"
>
<template #bodyCell="{ column, record }">
<template v-if="column.key === 'id'">
<a-space :size="8" align="center">
<a-tooltip>
<template #title>查看详情</template>
<a-button type="link" @click.prevent="fnModalVisible(record)">
<template #icon><ProfileOutlined /></template>
</a-button>
</a-tooltip>
</a-space>
</template>
</template>
</a-table>
</a-card>
<!-- 新增框或修改框 -->
<a-modal
width="1200px"
:title="modalState.title"
:visible="modalState.visible"
@cancel="fnModalVisibleClose"
>
<h4>信令数据</h4>
<div v-for="v in modalState.from.rawData" :key="v.row">
<div>{{ v.code }}</div>
<div>{{ v.asciiText }}</div>
</div>
<a-divider />
<h4>信令信息</h4>
</a-modal>
</PageContainer> </PageContainer>
</template> </template>
<style lang="less" scoped></style> <style lang="less" scoped>
.table :deep(.ant-pagination) {
padding: 0 24px;
}
</style>

View File

@@ -1,236 +1,484 @@
<script lang="ts" setup> <script setup lang="ts">
import { reactive } from 'vue'; import { useRoute } from 'vue-router';
import { reactive, ref, onMounted, toRaw } from 'vue';
import { PageContainer } from '@ant-design-vue/pro-layout'; import { PageContainer } from '@ant-design-vue/pro-layout';
import { Modal } from 'ant-design-vue/lib/components'; import { Form, message, Modal } from 'ant-design-vue/lib';
import message from 'ant-design-vue/lib/message'; import { SizeType } from 'ant-design-vue/lib/config-provider';
import { FileType, UploadFile } from 'ant-design-vue/lib/upload/interface'; import { MenuInfo } from 'ant-design-vue/lib/menu/src/interface';
import { UploadRequestOption } from 'ant-design-vue/lib/vc-upload/interface'; import { ColumnsType } from 'ant-design-vue/lib/table';
import saveAs from 'file-saver'; import { parseDateToStr } from '@/utils/date-utils';
import { RESULT_CODE_SUCCESS } from '@/constants/result-constants';
import { import {
downloadFile, listNeBackup,
downloadFileChunk, delNeBackup,
uploadFile, downloadNeBackup,
uploadFileChunk, } from '@/api/configManage/backupManage';
} from '@/api/tool/file'; import { saveAs } from 'file-saver';
import useI18n from '@/hooks/useI18n';
import { getConfigInfo, updateConfig } from '@/api/configManage/config';
import useNeInfoStore from '@/store/modules/neinfo';
const { t } = useI18n();
const route = useRoute();
let state = reactive<{ /**路由标题 */
/**上传状态 */ let title = ref<string>((route.meta.title as string) ?? '标题');
loading: boolean;
uploadFilePath: string; /**查询参数 */
downloadFilePath: string; let queryParams = reactive({
/*文件列表 */ /**网元类型 */
fileList: UploadFile<any>[]; neType: '',
}>({ /**当前页数 */
loading: false, pageNum: 1,
uploadFilePath: '', /**每页条数 */
downloadFilePath: '', pageSize: 20,
fileList: [
// {
// uid: '1',
// percent: 100,
// status: 'success',
// name: 'xxx.png',
// url: '/upload/default/2023/06/xxx.png',
// thumbUrl: '/upload/default/2023/06/xxx.png',
// },
],
}); });
/**下载文件 */ /**查询参数重置 */
function fnDownload() { function fnQueryReset() {
const key = 'downloadFile'; queryParams = Object.assign(queryParams, {
message.loading({ content: '请稍等...', key }); neType: '',
const filePath = state.downloadFilePath; pageNum: 1,
if (!filePath) return; pageSize: 20,
downloadFile(filePath).then(res => {
if (res.code === 200) {
message.success({
content: `已完成下载`,
key,
duration: 2,
});
const fileName = filePath.substring(filePath.lastIndexOf('/') + 1);
saveAs(res.data, fileName);
} else {
message.error({
content: `${res.msg}`,
key,
duration: 2,
});
}
}); });
tablePagination.current = 1;
tablePagination.pageSize = 20;
fnGetList();
} }
/**下载切片文件 */ /**表格状态类型 */
function fnDownloadChunk() { type TabeStateType = {
const key = 'downloadFileChunk'; /**加载等待 */
message.loading({ content: '请稍等...', key }); loading: boolean;
const filePath = state.downloadFilePath; /**紧凑型 */
downloadFileChunk(filePath, 5).then(blob => { size: SizeType;
console.log(blob); /**搜索栏 */
if (blob.size === 0) { seached: boolean;
message.error({ /**记录数据 */
content: `文件读取失败`, data: object[];
key, /**勾选记录 */
duration: 2, selectedRowKeys: (string | number)[];
}); };
} else {
message.success({ /**表格状态 */
content: `已完成下载`, let tableState: TabeStateType = reactive({
key, loading: false,
duration: 2, size: 'middle',
}); seached: true,
const fileName = filePath.substring(filePath.lastIndexOf('/') + 1); data: [],
saveAs(blob, fileName); selectedRowKeys: [],
} });
});
/**表格字段列 */
let tableColumns: ColumnsType = [
{
title: t('common.rowId'),
dataIndex: 'id',
align: 'center',
},
{
title: t('views.configManage.backupManage.neType'),
dataIndex: 'neType',
align: 'center',
},
{
title: t('views.configManage.backupManage.neID'),
dataIndex: 'neId',
align: 'center',
},
{
title: t('views.configManage.backupManage.fileName'),
dataIndex: 'fileName',
align: 'center',
},
{
title: t('views.configManage.backupManage.createAt'),
dataIndex: 'createTime',
align: 'center',
customRender(opt) {
if (!opt.value) return '';
return parseDateToStr(opt.value);
},
},
{
title: t('common.operate'),
key: 'id',
align: 'center',
},
];
/**表格分页器参数 */
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;
} }
/**上传前检查或转换压缩 */ /**信息文件下载 */
function fnBeforeUpload(file: FileType) { function fnDownloadFile(row: Record<string, any>) {
if (state.loading) return false;
const isJpgOrPng = ['image/jpeg', 'image/png'].includes(file.type);
if (!isJpgOrPng) {
message.error('只支持上传图片格式jpg、png', 3);
}
const isLt2M = file.size / 1024 / 1024 < 2;
if (!isLt2M) {
message.error('图片文件大小必须小于 2MB', 3);
}
return isJpgOrPng && isLt2M;
}
/**上传文件 */
function fnUpload(up: UploadRequestOption) {
Modal.confirm({ Modal.confirm({
title: '提示', title: '提示',
content: `确认要上传文件?`, content: `确认下载记录编号为 【${row.id}】 的数据项文件?`,
onOk() { onOk() {
// 发送请求 const key = 'downloadNeBackup';
const hide = message.loading('请稍等...', 0); message.loading({ content: t('common.loading'), key });
state.loading = true; downloadNeBackup(toRaw(row)).then(res => {
let formData = new FormData(); if (res.code === RESULT_CODE_SUCCESS) {
formData.append('file', up.file); message.success({
formData.append('subPath', 'default'); content: `已完成下载`,
uploadFile(formData).then(res => { key,
state.loading = false; duration: 2,
hide(); });
if (res.code === 200) { saveAs(res.data, `user_${Date.now()}.xlsx`);
message.success('文件上传成功', 3);
state.uploadFilePath = res.data.url;
state.downloadFilePath = res.data.fileName;
} else { } else {
message.error(res.msg, 3); message.error({
content: `${res.msg}`,
key,
duration: 2,
});
} }
}); });
}, },
}); });
} }
/**上传分片 */ /**
function fnUploadChunk(up: UploadRequestOption) { * 备份信息删除
const fileData = up.file as File; * @param row 记录编号ID
const item = state.fileList.find(f => f.name === fileData.name); */
function fnRecordDelete(row: Record<string, any>) {
Modal.confirm({ Modal.confirm({
title: '提示', title: '提示',
content: `确认要上传文件吗?`, content: `确认删除记录编号为 【${row.id}】 的数据项?`,
onOk() { onOk() {
// 发送请求 const key = 'delNeBackup';
const hide = message.loading('请稍等...', 0); message.loading({ content: '请稍等...', key });
uploadFileChunk(fileData, 4, 'default').then(res => { delNeBackup(toRaw(row)).then(res => {
hide();
if (res.code === 200) { if (res.code === 200) {
message.success('文件上传成功', 3); message.success({
if (item) { content: `删除成功`,
item.url = res.data.url; key,
item.name = res.data.newFileName; duration: 2,
item.percent = 100; });
item.status = 'done'; fnGetList();
}
} else { } else {
message.error(res.msg, 3); message.error({
state.fileList.splice(state.fileList.length - 1, 1); content: `${res.msg}`,
key: key,
duration: 2,
});
} }
}); });
}, },
onCancel() { });
if (item) { }
state.fileList.splice(state.fileList.length - 1, 1);
/**查询备份信息列表 */
function fnGetList() {
if (tableState.loading) return;
tableState.loading = true;
listNeBackup(toRaw(queryParams)).then(res => {
if (res.code === RESULT_CODE_SUCCESS && Array.isArray(res.rows)) {
// 取消勾选
if (tableState.selectedRowKeys.length > 0) {
tableState.selectedRowKeys = [];
} }
}, tablePagination.total = res.total;
tableState.data = res.rows;
}
tableState.loading = false;
}); });
} }
/**对话框对象信息状态类型 */
type ModalStateType = {
/**新增框或修改框是否显示 */
visibleByEdit: boolean;
/**标题 */
title: string;
/**表单数据 */
from: Record<string, any>;
/**确定按钮 loading */
confirmLoading: boolean;
};
/**对话框对象信息状态 */
let modalState: ModalStateType = reactive({
visibleByEdit: false,
title: '任务设置',
from: {
configTag: "",
autoBackupTime: "",
},
confirmLoading: false,
});
/**
* 对话框弹出显示为 新增或者修改
* @param noticeId 网元id, 不传为新增
*/
function fnModalVisibleByEdit() {
if (modalState.confirmLoading) return;
const hide = message.loading('正在打开...', 0);
modalState.confirmLoading = true;
getConfigInfo('NfConfigSet').then(res => {
modalState.confirmLoading = false;
hide();
if (res.code === RESULT_CODE_SUCCESS) {
modalState.from.configTag = res.data.configTag
modalState.from.autoBackupTime = res.data.value
modalState.title = t('views.configManage.backupManage.setBackupTask');
modalState.visibleByEdit = true;
} else {
message.error(`获取配置信息失败`, 2);
}
});
}
/**对话框内表单属性和校验规则 */
const modalStateFrom = Form.useForm(
modalState.from,
reactive({
autoBackupTime: [{ required: true, message: '备份时间不能为空' }],
})
);
/**
* 对话框弹出确认执行函数
* 进行表达规则校验
*/
function fnModalOk() {
modalStateFrom
.validate()
.then(e => {
modalState.confirmLoading = true;
const from = toRaw(modalState.from);
const hide = message.loading({ content: t('common.loading') });
updateConfig(from.configTag, {value: from.autoBackupTime})
.then(res => {
if (res.code === RESULT_CODE_SUCCESS) {
message.success({
content: t('common.msgSuccess', { msg: modalState.title }),
duration: 3,
});
modalState.visibleByEdit = false;
modalStateFrom.resetFields();
} else {
message.error({
content: `${res.msg}`,
duration: 3,
});
}
})
.finally(() => {
hide();
modalState.confirmLoading = false;
});
})
.catch(e => {
message.error(t('common.errorFields', { num: e.errorFields.length }), 3);
});
}
/**
* 对话框弹出关闭执行函数
* 进行表达规则校验
*/
function fnModalCancel() {
modalState.visibleByEdit = false;
modalStateFrom.resetFields();
}
onMounted(() => {
// 获取列表数据
fnGetList();
});
</script> </script>
<template> <template>
<PageContainer title="上传示例"> <PageContainer :title="title">
<a-row :gutter="16"> <a-card
<a-col :lg="12" :md="12" :xs="24"> v-show="tableState.seached"
<a-card title="普通文件" style="margin-bottom: 16px"> :bordered="false"
<a-row :gutter="8"> :body-style="{ marginBottom: '24px', paddingBottom: 0 }"
<a-col :span="24" style="margin-bottom: 16px"> >
<a-input <!-- 表格搜索栏 -->
style="margin-bottom: 16px" <a-form :model="queryParams" name="queryParams" layout="horizontal">
type="text" <a-row :gutter="16">
placeholder="输入资源文件地址" <a-col :lg="6" :md="12" :xs="24">
v-model:value="state.downloadFilePath" <a-form-item
> :label="t('views.configManage.backupManage.neType')"
<template #suffix> name="neType "
<a-button type="primary" @click="fnDownload"> >
普通下载 <a-auto-complete
</a-button> v-model:value="queryParams.neType"
</template> :options="useNeInfoStore().getNeSelectOtions"
</a-input> allow-clear
<a-input :placeholder="t('views.configManage.backupManage.neTypePlease')"
type="text" />
placeholder="输入资源文件地址" </a-form-item>
v-model:value="state.downloadFilePath" </a-col>
> <a-col :lg="6" :md="12" :xs="24">
<template #suffix> <a-form-item>
<a-button type="primary" @click="fnDownloadChunk"> <a-space :size="8">
分片下载 <a-button type="primary" @click.prevent="fnGetList">
</a-button> <template #icon><SearchOutlined /></template>
</template> {{ t('common.search') }}
</a-input> </a-button>
</a-col> <a-button type="default" @click.prevent="fnQueryReset">
<a-col :span="24"> <template #icon><ClearOutlined /></template>
<a-space direction="vertical" :size="16"> {{ t('common.reset') }}
<a-upload </a-button>
name="file"
list-type="picture"
:max-count="1"
:show-upload-list="false"
:before-upload="fnBeforeUpload"
:custom-request="fnUpload"
>
<a-button type="default" :loading="state.loading">
选择文件
</a-button>
</a-upload>
<a-image
:width="128"
:height="128"
:src="state.uploadFilePath"
/>
</a-space> </a-space>
</a-col> </a-form-item>
</a-row> </a-col>
</a-card> </a-row>
</a-col> </a-form>
<a-col :lg="12" :md="12" :xs="24"> </a-card>
<a-card title="大文件分片上传" style="margin-bottom: 16px">
<a-upload <a-card :bordered="false" :body-style="{ padding: '0px' }">
v-model:file-list="state.fileList" <!-- 插槽-卡片左侧侧 -->
name="file" <template #title>
list-type="picture" <a-space :size="8" align="center">
:custom-request="fnUploadChunk" <a-button type="primary" @click.prevent="fnModalVisibleByEdit()">
> <template #icon><FieldTimeOutlined /></template>
<a-button> 选择文件 </a-button> {{ t('views.configManage.backupManage.setBackupTask') }}
</a-upload> </a-button>
</a-card> </a-space>
</a-col> </template>
</a-row>
<!-- 插槽-卡片右侧 -->
<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>
<a-tooltip>
<template #title>{{ t('common.sizeText') }}</template>
<a-dropdown 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="id"
:columns="tableColumns"
:loading="tableState.loading"
:data-source="tableState.data"
:size="tableState.size"
:pagination="tablePagination"
:scroll="{ x: true }"
>
<template #bodyCell="{ column, record }">
<template v-if="column.key === 'id'">
<a-space :size="8" align="center">
<a-tooltip>
<template #title>{{ t('common.downloadText') }}</template>
<a-button type="link" @click.prevent="fnDownloadFile(record)">
<template #icon><DownloadOutlined /></template>
</a-button>
</a-tooltip>
<a-tooltip>
<template #title>{{ t('common.deleteText') }}</template>
<a-button type="link" @click.prevent="fnRecordDelete(record)">
<template #icon><DeleteOutlined /></template>
</a-button>
</a-tooltip>
</a-space>
</template>
</template>
</a-table>
</a-card>
<!-- 新增框或修改框 -->
<a-modal
width="800px"
:keyboard="false"
:mask-closable="false"
:visible="modalState.visibleByEdit"
:title="modalState.title"
:confirm-loading="modalState.confirmLoading"
@ok="fnModalOk"
@cancel="fnModalCancel"
>
<a-form name="modalStateFrom" layout="horizontal">
<a-form-item
label="自动备份任务备份时间(小时)"
name="autoBackupTime"
v-bind="modalStateFrom.validateInfos.autoBackupTime"
>
<a-input
v-model:value="modalState.from.autoBackupTime"
allow-clear
placeholder="备份任务执行单位是小时"
>
</a-input>
</a-form-item>
</a-form>
</a-modal>
</PageContainer> </PageContainer>
</template> </template>
<style lang="less" scoped></style> <style lang="less" scoped>
.table :deep(.ant-pagination) {
padding: 0 24px;
}
</style>