356 lines
9.1 KiB
Vue
356 lines
9.1 KiB
Vue
<script setup lang="ts">
|
|
import { reactive, ref, onMounted, 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 { parseDateToStr } from '@/utils/date-utils';
|
|
import {
|
|
getBakFile,
|
|
getBakFileList,
|
|
downFile,
|
|
delFile,
|
|
} from '@/api/logManage/exportFile';
|
|
import { RESULT_CODE_SUCCESS } from '@/constants/result-constants';
|
|
import useI18n from '@/hooks/useI18n';
|
|
import saveAs from 'file-saver';
|
|
const { t } = useI18n();
|
|
|
|
/**网元参数 */
|
|
let logSelect = ref<string[]>([]);
|
|
|
|
/**文件列表 */
|
|
let fileList = ref<any>([]);
|
|
|
|
/**查询参数 */
|
|
let queryParams = reactive({
|
|
/**读取路径 */
|
|
path: '',
|
|
/**表名 */
|
|
tableName: '',
|
|
/**当前页数 */
|
|
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',
|
|
width: 100,
|
|
},
|
|
{
|
|
title: t('views.logManage.neFile.modifiedTime'),
|
|
dataIndex: 'modifiedTime',
|
|
align: 'left',
|
|
customRender(opt) {
|
|
if (!opt.value) return '';
|
|
return parseDateToStr(opt.value * 1000);
|
|
},
|
|
width: 150,
|
|
},
|
|
{
|
|
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);
|
|
|
|
/**删除触发等待 */
|
|
let delLoading = 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);
|
|
downFile({
|
|
path: queryParams.path,
|
|
fileName: 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;
|
|
});
|
|
},
|
|
});
|
|
}
|
|
|
|
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() {
|
|
const key = 'delFile';
|
|
delLoading.value = true;
|
|
message.loading({ content: t('common.loading'), key });
|
|
delFile({
|
|
fileName: row.fileName,
|
|
path: queryParams.path,
|
|
})
|
|
.then(res => {
|
|
if (res.code === RESULT_CODE_SUCCESS) {
|
|
message.success({
|
|
content: t('views.system.user.delSuss'),
|
|
key,
|
|
duration: 2,
|
|
});
|
|
fnGetList();
|
|
} else {
|
|
message.error({
|
|
content: `${res.msg}`,
|
|
key: key,
|
|
duration: 2,
|
|
});
|
|
}
|
|
})
|
|
.finally(() => {
|
|
delLoading.value = false;
|
|
});
|
|
},
|
|
});
|
|
}
|
|
|
|
/**网元类型选择对应修改 */
|
|
function fnNeChange(keys: any, opt: any) {
|
|
queryParams.tableName = keys;
|
|
queryParams.path = opt.path;
|
|
fnGetList(1);
|
|
}
|
|
|
|
/**查询备份信息列表, pageNum初始页数 */
|
|
function fnGetList(pageNum?: number) {
|
|
if (queryParams.tableName === '') {
|
|
message.warning({
|
|
content: t('views.logManage.exportFile.selectTip'),
|
|
duration: 2,
|
|
});
|
|
return;
|
|
}
|
|
if (tableState.loading) return;
|
|
tableState.loading = true;
|
|
if (pageNum) {
|
|
queryParams.pageNum = pageNum;
|
|
}
|
|
getBakFileList(toRaw(queryParams)).then(res => {
|
|
if (res.code === RESULT_CODE_SUCCESS && Array.isArray(res.data)) {
|
|
tablePagination.total = res.total;
|
|
tableState.data = res.data;
|
|
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;
|
|
});
|
|
}
|
|
|
|
onMounted(() => {
|
|
getBakFile().then(res => {
|
|
if (res.code === RESULT_CODE_SUCCESS && Array.isArray(res.data)) {
|
|
res.data.forEach((item: any) => {
|
|
fileList.value.push({
|
|
value: item.tableName,
|
|
label: item.tableDisplay,
|
|
path: item.filePath,
|
|
});
|
|
});
|
|
}
|
|
});
|
|
// .finally(() => {
|
|
// fnGetList();
|
|
// });
|
|
});
|
|
</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.fileName') }}:</span>
|
|
<a-select
|
|
v-model:value="logSelect"
|
|
:options="fileList"
|
|
@change="fnNeChange"
|
|
:allow-clear="false"
|
|
style="width: 200px"
|
|
/>
|
|
</a-col>
|
|
<template v-if="queryParams.path">
|
|
<span>{{ t('views.logManage.neFile.nePath') }}:</span>
|
|
<a-col>
|
|
<a-breadcrumb>
|
|
<a-breadcrumb-item>
|
|
{{ queryParams.path }}
|
|
</a-breadcrumb-item>
|
|
</a-breadcrumb>
|
|
</a-col>
|
|
</template>
|
|
</a-row>
|
|
</a-form>
|
|
</template>
|
|
|
|
<!-- 插槽-卡片右侧 -->
|
|
<template #extra>
|
|
<a-space :size="8" align="center">
|
|
<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-button
|
|
type="link"
|
|
:loading="downLoading"
|
|
@click.prevent="fnDownloadFile(record)"
|
|
v-if="record.fileType === 'file'"
|
|
>
|
|
<template #icon><DownloadOutlined /></template>
|
|
</a-button>
|
|
<a-button
|
|
type="link"
|
|
:loading="delLoading"
|
|
@click.prevent="fnRecordDelete(record)"
|
|
v-if="record.fileType === 'file'"
|
|
>
|
|
<template #icon><DeleteOutlined /></template>
|
|
</a-button>
|
|
</a-space>
|
|
</template>
|
|
</template>
|
|
</a-table>
|
|
</a-card>
|
|
</PageContainer>
|
|
</template>
|
|
|
|
<style lang="less" scoped></style>
|