520 lines
14 KiB
Vue
520 lines
14 KiB
Vue
<script setup lang="ts">
|
|
import { onMounted, reactive, ref, toRaw } from 'vue';
|
|
import { PageContainer } from 'antdv-pro-layout';
|
|
import { SizeType } from 'ant-design-vue/es/config-provider';
|
|
import { ColumnsType } from 'ant-design-vue/es/table';
|
|
import { Modal, message } from 'ant-design-vue/es';
|
|
import BackupModal from '@/views/ne/neConfigBackup/components/BackupModal.vue';
|
|
import { parseDateToStr } from '@/utils/date-utils';
|
|
import { RESULT_CODE_SUCCESS } from '@/constants/result-constants';
|
|
import useI18n from '@/hooks/useI18n';
|
|
import useNeListStore from '@/store/modules/ne_list';
|
|
import saveAs from 'file-saver';
|
|
import { delFile, getFile, listFile } from '@/api/tool/file';
|
|
import { parseSizeFromFile } from '@/utils/parse-utils';
|
|
import { pushBackupFTP } from '@/api/neData/backup';
|
|
const { t } = useI18n();
|
|
const neListStore = useNeListStore();
|
|
|
|
/**文件来源 */
|
|
let sourceState = reactive({
|
|
/**文件列表 */
|
|
list: [
|
|
{
|
|
value: '/log/sys_log_login',
|
|
label: t('views.logManage.exportFile.sysloginLog'),
|
|
path: '/usr/local/omc/backup',
|
|
},
|
|
{
|
|
value: '/log/sys_log_operate',
|
|
label: t('views.logManage.exportFile.sysOperateLog'),
|
|
path: '/usr/local/omc/backup',
|
|
},
|
|
|
|
{
|
|
value: '/log/ne_log',
|
|
label: t('views.logManage.exportFile.neLog'),
|
|
path: '/usr/local/omc/backup',
|
|
},
|
|
|
|
{
|
|
value: '/cdr/ims',
|
|
label: t('views.logManage.exportFile.cdrIMS'),
|
|
path: '/usr/local/omc/backup',
|
|
neType: 'IMS',
|
|
},
|
|
{
|
|
value: '/cdr/smf',
|
|
label: t('views.logManage.exportFile.cdrSMF'),
|
|
path: '/usr/local/omc/backup',
|
|
neType: 'SMF',
|
|
},
|
|
{
|
|
value: '/cdr/smsc',
|
|
label: t('views.logManage.exportFile.cdrSMSC'),
|
|
path: '/usr/local/omc/backup',
|
|
neType: 'SMSC',
|
|
},
|
|
{
|
|
value: '/kpi/ims',
|
|
label: t('views.logManage.exportFile.kpiIMS'),
|
|
path: '/usr/local/omc/backup',
|
|
neType: 'IMS',
|
|
},
|
|
{
|
|
value: '/kpi/amf',
|
|
label: t('views.logManage.exportFile.kpiAMF'),
|
|
path: '/usr/local/omc/backup',
|
|
neType: 'AMF',
|
|
},
|
|
{
|
|
value: '/kpi/udm',
|
|
label: t('views.logManage.exportFile.kpiUDM'),
|
|
path: '/usr/local/omc/backup',
|
|
neType: 'UDM',
|
|
},
|
|
{
|
|
value: '/kpi/smf',
|
|
label: t('views.logManage.exportFile.kpiSMF'),
|
|
path: '/usr/local/omc/backup',
|
|
neType: 'SMF',
|
|
},
|
|
{
|
|
value: '/kpi/pcf',
|
|
label: t('views.logManage.exportFile.kpiPCF'),
|
|
path: '/usr/local/omc/backup',
|
|
neType: 'PCF',
|
|
},
|
|
{
|
|
value: '/kpi/upf',
|
|
label: t('views.logManage.exportFile.kpiUPF'),
|
|
path: '/usr/local/omc/backup',
|
|
neType: 'UPF',
|
|
},
|
|
{
|
|
value: '/kpi/mme',
|
|
label: t('views.logManage.exportFile.kpiMME'),
|
|
path: '/usr/local/omc/backup',
|
|
neType: 'MME',
|
|
},
|
|
{
|
|
value: '/kpi/smsc',
|
|
label: t('views.logManage.exportFile.kpiSMSC'),
|
|
path: '/usr/local/omc/backup',
|
|
neType: 'SMSC',
|
|
},
|
|
],
|
|
/**选择value */
|
|
value: undefined,
|
|
});
|
|
|
|
/**查询参数 */
|
|
let queryParams = reactive({
|
|
/**读取路径 */
|
|
path: '',
|
|
/**当前页数 */
|
|
pageNum: 1,
|
|
/**每页条数 */
|
|
pageSize: 20,
|
|
});
|
|
|
|
/**表格状态类型 */
|
|
type TabeStateType = {
|
|
/**加载等待 */
|
|
loading: boolean;
|
|
/**紧凑型 */
|
|
size: SizeType;
|
|
/**记录数据 */
|
|
data: object[];
|
|
};
|
|
|
|
/**表格状态 */
|
|
let tableState: TabeStateType = reactive({
|
|
loading: false,
|
|
size: 'small',
|
|
data: [],
|
|
});
|
|
|
|
/**表格字段列 */
|
|
let tableColumns: ColumnsType = [
|
|
{
|
|
title: t('views.logManage.neFile.fileMode'),
|
|
dataIndex: 'fileMode',
|
|
align: 'center',
|
|
width: 150,
|
|
},
|
|
{
|
|
title: t('views.logManage.neFile.owner'),
|
|
dataIndex: 'owner',
|
|
align: 'left',
|
|
width: 100,
|
|
},
|
|
{
|
|
title: t('views.logManage.neFile.group'),
|
|
dataIndex: 'group',
|
|
align: 'left',
|
|
width: 100,
|
|
},
|
|
{
|
|
title: t('views.logManage.neFile.size'),
|
|
dataIndex: 'size',
|
|
align: 'left',
|
|
customRender(opt) {
|
|
return parseSizeFromFile(opt.value);
|
|
},
|
|
width: 100,
|
|
},
|
|
{
|
|
title: t('views.logManage.neFile.modifiedTime'),
|
|
dataIndex: 'modifiedTime',
|
|
align: 'left',
|
|
customRender(opt) {
|
|
if (!opt.value) return '';
|
|
return parseDateToStr(opt.value);
|
|
},
|
|
width: 200,
|
|
},
|
|
{
|
|
title: t('views.logManage.neFile.fileName'),
|
|
dataIndex: 'fileName',
|
|
align: 'left',
|
|
},
|
|
{
|
|
title: t('common.operate'),
|
|
key: 'fileName',
|
|
align: 'center',
|
|
width: 100,
|
|
},
|
|
];
|
|
|
|
/**表格分页器参数 */
|
|
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();
|
|
},
|
|
});
|
|
|
|
/**下载触发等待 */
|
|
let downLoading = ref<boolean>(false);
|
|
/**信息文件下载 */
|
|
function fnDownloadFile(row: Record<string, any>) {
|
|
if (downLoading.value) return;
|
|
Modal.confirm({
|
|
title: t('common.tipTitle'),
|
|
content: t('views.logManage.exportFile.downTip', {
|
|
fileName: row.fileName,
|
|
}),
|
|
onOk() {
|
|
downLoading.value = true;
|
|
const hide = message.loading(t('common.loading'), 0);
|
|
getFile(queryParams.path, row.fileName)
|
|
.then(res => {
|
|
if (res.code === RESULT_CODE_SUCCESS) {
|
|
message.success({
|
|
content: t('common.msgSuccess', {
|
|
msg: t('common.downloadText'),
|
|
}),
|
|
duration: 2,
|
|
});
|
|
saveAs(res.data, `${row.fileName}`);
|
|
} else {
|
|
message.error({
|
|
content: t('views.logManage.exportFile.downTipErr'),
|
|
duration: 2,
|
|
});
|
|
}
|
|
})
|
|
.finally(() => {
|
|
hide();
|
|
downLoading.value = false;
|
|
});
|
|
},
|
|
});
|
|
}
|
|
|
|
/**删除触发等待 */
|
|
let delLoading = ref<boolean>(false);
|
|
/**信息文件删除 */
|
|
function fnRecordDelete(row: Record<string, any>) {
|
|
if (delLoading.value) return;
|
|
Modal.confirm({
|
|
title: t('common.tipTitle'),
|
|
content: t('views.logManage.exportFile.deleteTip', {
|
|
fileName: row.fileName,
|
|
}),
|
|
onOk() {
|
|
delLoading.value = true;
|
|
const hide = message.loading(t('common.loading'), 0);
|
|
delFile(queryParams.path, row.fileName)
|
|
.then(res => {
|
|
if (res.code === RESULT_CODE_SUCCESS) {
|
|
message.success({
|
|
content: t('common.msgSuccess', {
|
|
msg: t('common.deleteText'),
|
|
}),
|
|
duration: 2,
|
|
});
|
|
fnGetList();
|
|
} else {
|
|
message.error({
|
|
content: t('views.logManage.exportFile.deleteTipErr'),
|
|
duration: 2,
|
|
});
|
|
}
|
|
})
|
|
.finally(() => {
|
|
hide();
|
|
delLoading.value = false;
|
|
});
|
|
},
|
|
});
|
|
}
|
|
|
|
/**访问路径 */
|
|
let nePathArr = ref<string[]>([]);
|
|
/**进入目录 */
|
|
function fnDirCD(dir: string, index?: number) {
|
|
if (index === undefined) {
|
|
nePathArr.value.push(dir);
|
|
queryParams.path = nePathArr.value.join('/');
|
|
fnGetList(1);
|
|
return;
|
|
}
|
|
if (index === 0) {
|
|
nePathArr.value = [nePathArr.value[0]];
|
|
queryParams.path = nePathArr.value.join('/');
|
|
fnGetList(1);
|
|
} else {
|
|
nePathArr.value = nePathArr.value.slice(0, index + 1);
|
|
queryParams.path = nePathArr.value.join('/');
|
|
fnGetList(1);
|
|
}
|
|
}
|
|
|
|
/**网元类型选择对应修改 */
|
|
function fnNeChange(_: any, opt: any) {
|
|
nePathArr.value = [`${opt.path}${opt.value}`];
|
|
queryParams.path = nePathArr.value.join('/');
|
|
ftpInfo.path = queryParams.path;
|
|
ftpInfo.tag = opt.value;
|
|
fnGetList(1);
|
|
}
|
|
|
|
/**查询备份信息列表, pageNum初始页数 */
|
|
function fnGetList(pageNum?: number) {
|
|
if (queryParams.path === '') {
|
|
message.warning({
|
|
content: t('views.logManage.exportFile.fileSourcePlease'),
|
|
duration: 2,
|
|
});
|
|
return;
|
|
}
|
|
if (tableState.loading) return;
|
|
tableState.loading = true;
|
|
if (pageNum) {
|
|
queryParams.pageNum = pageNum;
|
|
}
|
|
listFile(toRaw(queryParams)).then(res => {
|
|
if (res.code === RESULT_CODE_SUCCESS) {
|
|
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);
|
|
}
|
|
} else {
|
|
message.error(res.msg, 3);
|
|
tablePagination.total = 0;
|
|
tableState.data = [];
|
|
}
|
|
tableState.loading = false;
|
|
});
|
|
}
|
|
|
|
/**打开FTP配置窗口 */
|
|
const openFTPModal = ref<boolean>(false);
|
|
function fnFTPModalOpen() {
|
|
openFTPModal.value = !openFTPModal.value;
|
|
}
|
|
|
|
type FTPInfoType = {
|
|
path: string;
|
|
tag: string;
|
|
fileName: string;
|
|
};
|
|
const ftpInfo = reactive<FTPInfoType>({
|
|
path: '',
|
|
tag: '',
|
|
fileName: '',
|
|
});
|
|
|
|
/**同步文件到FTP */
|
|
function fnSyncFileToFTP(fileName: string) {
|
|
ftpInfo.fileName = fileName;
|
|
pushBackupFTP(toRaw(ftpInfo)).then(res => {
|
|
if (res.code === RESULT_CODE_SUCCESS) {
|
|
message.success(t('common.operateOk'), 3);
|
|
} else {
|
|
message.warning(res.msg, 3);
|
|
}
|
|
});
|
|
}
|
|
|
|
onMounted(() => {
|
|
sourceState.list = sourceState.list.filter(item => {
|
|
if (!item.neType) return true;
|
|
return neListStore.fnHasNe([item.neType]);
|
|
});
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<PageContainer>
|
|
<a-card :bordered="false" :body-style="{ padding: '0px' }">
|
|
<!-- 插槽-卡片左侧侧 -->
|
|
<template #title>
|
|
<a-form :model="queryParams" name="queryParams" layout="horizontal">
|
|
<a-row :gutter="16" align="middle">
|
|
<a-col>
|
|
<span>{{ t('views.logManage.exportFile.fileSource') }}:</span
|
|
>
|
|
<a-select
|
|
v-model:value="sourceState.value"
|
|
:options="sourceState.list"
|
|
@change="fnNeChange"
|
|
:allow-clear="false"
|
|
:placeholder="t('common.selectPlease')"
|
|
style="width: 200px"
|
|
/>
|
|
</a-col>
|
|
<template v-if="queryParams.path">
|
|
<span>{{ t('views.logManage.neFile.nePath') }}:</span>
|
|
<a-col>
|
|
<a-breadcrumb>
|
|
<a-breadcrumb-item
|
|
v-for="(path, index) in nePathArr"
|
|
:key="path"
|
|
@click="fnDirCD(path, index)"
|
|
>
|
|
{{ path }}
|
|
</a-breadcrumb-item>
|
|
</a-breadcrumb>
|
|
</a-col>
|
|
</template>
|
|
</a-row>
|
|
</a-form>
|
|
</template>
|
|
|
|
<!-- 插槽-卡片右侧 -->
|
|
<template #extra>
|
|
<a-space :size="8" align="center">
|
|
<a-tooltip placement="topRight">
|
|
<template #title>
|
|
{{ t('views.ne.neConfigBackup.backupModal.title') }}
|
|
</template>
|
|
<a-button type="text" @click.prevent="fnFTPModalOpen()">
|
|
<template #icon><DeliveredProcedureOutlined /></template>
|
|
</a-button>
|
|
</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-space>
|
|
</template>
|
|
|
|
<!-- 表格列表 -->
|
|
<a-table
|
|
class="table"
|
|
row-key="fileName"
|
|
:columns="tableColumns"
|
|
:loading="tableState.loading"
|
|
:data-source="tableState.data"
|
|
:size="tableState.size"
|
|
:pagination="tablePagination"
|
|
:scroll="{ x: 800 }"
|
|
>
|
|
<template #bodyCell="{ column, record }">
|
|
<template v-if="column.key === 'fileName'">
|
|
<a-space :size="8" align="center">
|
|
<a-tooltip placement="topRight" v-if="record.fileType === 'file'">
|
|
<template #title>
|
|
{{ t('views.ne.neConfigBackup.backupModal.pushFileOper') }}
|
|
</template>
|
|
<a-button
|
|
type="link"
|
|
@click.prevent="fnSyncFileToFTP(record.fileName)"
|
|
>
|
|
<template #icon><CloudServerOutlined /></template>
|
|
</a-button>
|
|
</a-tooltip>
|
|
<a-tooltip placement="topRight" v-if="record.fileType === 'file'">
|
|
<template #title>{{ t('common.downloadText') }}</template>
|
|
<a-button
|
|
type="link"
|
|
:loading="downLoading"
|
|
@click.prevent="fnDownloadFile(record)"
|
|
>
|
|
<template #icon><DownloadOutlined /></template>
|
|
</a-button>
|
|
</a-tooltip>
|
|
<a-tooltip placement="topRight" v-if="record.fileType === 'file'">
|
|
<template #title>{{ t('common.deleteText') }}</template>
|
|
<a-button
|
|
type="link"
|
|
:loading="delLoading"
|
|
@click.prevent="fnRecordDelete(record)"
|
|
>
|
|
<template #icon><DeleteOutlined /></template>
|
|
</a-button>
|
|
</a-tooltip>
|
|
<a-button
|
|
type="link"
|
|
:loading="downLoading"
|
|
@click.prevent="fnDirCD(record.fileName)"
|
|
v-if="record.fileType === 'dir'"
|
|
>
|
|
<template #icon><FolderOutlined /></template>
|
|
{{ t('views.logManage.neFile.dirCd') }}
|
|
</a-button>
|
|
</a-space>
|
|
</template>
|
|
</template>
|
|
</a-table>
|
|
</a-card>
|
|
|
|
<!-- FTP配置窗口 -->
|
|
<BackupModal v-model:open="openFTPModal"></BackupModal>
|
|
</PageContainer>
|
|
</template>
|
|
|
|
<style lang="less" scoped></style>
|