345 lines
9.4 KiB
Vue
345 lines
9.4 KiB
Vue
<script setup lang="ts">
|
|
import { useRoute } from 'vue-router';
|
|
import { reactive, ref, onMounted, toRaw } from 'vue';
|
|
import { PageContainer } from '@ant-design-vue/pro-layout';
|
|
import { SizeType } from 'ant-design-vue/lib/config-provider';
|
|
import { MenuInfo } from 'ant-design-vue/lib/menu/src/interface';
|
|
import { ColumnsType } from 'ant-design-vue/lib/table';
|
|
import { parseDateToStr } from '@/utils/date-utils';
|
|
import { RESULT_CODE_SUCCESS } from '@/constants/result-constants';
|
|
import { listAlarm } from '@/api/logManage/alarm';
|
|
import useNeInfoStore from '@/store/modules/neinfo';
|
|
import useDictStore from '@/store/modules/dict';
|
|
import useI18n from '@/hooks/useI18n';
|
|
const { getDict } = useDictStore();
|
|
const { t } = useI18n();
|
|
const route = useRoute();
|
|
|
|
/**路由标题 */
|
|
let title = ref<string>((route.meta.title as string) ?? '标题');
|
|
|
|
/**字典数据 */
|
|
let dict: {
|
|
/**告警状态 */
|
|
alarmStatus: DictType[];
|
|
} = reactive({
|
|
alarmStatus: [],
|
|
});
|
|
|
|
/**记录开始结束时间 */
|
|
let queryRangePicker = ref<[string, string]>(['', '']);
|
|
|
|
/**查询参数 */
|
|
let queryParams = reactive({
|
|
/**网元类型 */
|
|
neType: '',
|
|
/**告警状态 */
|
|
status: undefined,
|
|
/**记录时间 */
|
|
beginTime: '',
|
|
endTime: '',
|
|
/**当前页数 */
|
|
pageNum: 1,
|
|
/**每页条数 */
|
|
pageSize: 20,
|
|
});
|
|
|
|
/**查询参数重置 */
|
|
function fnQueryReset() {
|
|
queryParams = Object.assign(queryParams, {
|
|
neType: '',
|
|
status: undefined,
|
|
beginTime: '',
|
|
endTime: '',
|
|
pageNum: 1,
|
|
pageSize: 20,
|
|
});
|
|
queryRangePicker.value = ['', ''];
|
|
tablePagination.current = 1;
|
|
tablePagination.pageSize = 20;
|
|
fnGetList();
|
|
}
|
|
|
|
/**表格状态类型 */
|
|
type TabeStateType = {
|
|
/**加载等待 */
|
|
loading: boolean;
|
|
/**紧凑型 */
|
|
size: SizeType;
|
|
/**搜索栏 */
|
|
seached: boolean;
|
|
/**记录数据 */
|
|
data: object[];
|
|
};
|
|
|
|
/**表格状态 */
|
|
let tableState: TabeStateType = reactive({
|
|
loading: false,
|
|
size: 'middle',
|
|
seached: true,
|
|
data: [],
|
|
});
|
|
|
|
/**表格字段列 */
|
|
let tableColumns: ColumnsType = [
|
|
{
|
|
title: t('common.rowId'),
|
|
dataIndex: 'id',
|
|
align: 'center',
|
|
},
|
|
{
|
|
title: '网元类型',
|
|
dataIndex: 'neType',
|
|
align: 'center',
|
|
},
|
|
{
|
|
title: '告警网元标识',
|
|
dataIndex: 'neId',
|
|
align: 'center',
|
|
},
|
|
{
|
|
title: '告警唯一标识',
|
|
dataIndex: 'alarmId',
|
|
align: 'center',
|
|
},
|
|
{
|
|
title: '告警流水号',
|
|
dataIndex: 'alarmSeq',
|
|
align: 'center',
|
|
},
|
|
{
|
|
title: '告警编号',
|
|
dataIndex: 'alarmCode',
|
|
align: 'center',
|
|
},
|
|
{
|
|
title: '原始告警级别',
|
|
dataIndex: 'alarmStatus',
|
|
key: 'alarmStatus',
|
|
align: 'center',
|
|
},
|
|
{
|
|
title: '告警产生时间',
|
|
dataIndex: 'eventTime',
|
|
align: 'center',
|
|
customRender(opt) {
|
|
if (!opt.value) return '';
|
|
return parseDateToStr(opt.value);
|
|
},
|
|
},
|
|
{
|
|
title: '记录时间',
|
|
dataIndex: 'logTime',
|
|
align: 'center',
|
|
customRender(opt) {
|
|
if (!opt.value) return '';
|
|
return parseDateToStr(opt.value);
|
|
},
|
|
},
|
|
];
|
|
|
|
/**表格分页器参数 */
|
|
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 fnGetList() {
|
|
if (tableState.loading) return;
|
|
tableState.loading = true;
|
|
if (!queryRangePicker.value) {
|
|
queryRangePicker.value = ['', ''];
|
|
}
|
|
queryParams.beginTime = queryRangePicker.value[0];
|
|
queryParams.endTime = queryRangePicker.value[1];
|
|
listAlarm(toRaw(queryParams)).then(res => {
|
|
if (res.code === RESULT_CODE_SUCCESS && Array.isArray(res.rows)) {
|
|
tablePagination.total = res.total;
|
|
tableState.data = res.rows;
|
|
}
|
|
tableState.loading = false;
|
|
});
|
|
}
|
|
|
|
onMounted(() => {
|
|
// 初始字典数据
|
|
Promise.allSettled([getDict('alarm_status')]).then(resArr => {
|
|
if (resArr[0].status === 'fulfilled') {
|
|
dict.alarmStatus = resArr[0].value;
|
|
}
|
|
});
|
|
// 获取网元网元列表
|
|
useNeInfoStore().fnNelist();
|
|
// 获取列表数据
|
|
fnGetList();
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<PageContainer :title="title">
|
|
<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="网元类型" name="neType">
|
|
<a-auto-complete
|
|
v-model:value="queryParams.neType"
|
|
:options="useNeInfoStore().getNeSelectOtions"
|
|
allow-clear
|
|
placeholder="查询网元类型"
|
|
/>
|
|
</a-form-item>
|
|
</a-col>
|
|
<a-col :lg="6" :md="12" :xs="24">
|
|
<a-form-item label="告警状态" name="status">
|
|
<a-select
|
|
v-model:value="queryParams.status"
|
|
allow-clear
|
|
placeholder="请选择告警状态"
|
|
:options="dict.alarmStatus"
|
|
>
|
|
</a-select>
|
|
</a-form-item>
|
|
</a-col>
|
|
<a-col :lg="8" :md="12" :xs="24">
|
|
<a-form-item label="记录时间" name="queryRangePicker">
|
|
<a-range-picker
|
|
v-model:value="queryRangePicker"
|
|
allow-clear
|
|
bordered
|
|
show-time
|
|
value-format="YYYY-MM-DD HH:mm:ss"
|
|
format="YYYY-MM-DD HH:mm:ss"
|
|
:placeholder="['记录开始', '记录结束']"
|
|
style="width: 100%"
|
|
></a-range-picker>
|
|
</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">
|
|
<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> </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>
|
|
<a-tooltip>
|
|
<template #title>{{ t('common.sizeText') }}</template>
|
|
<a-dropdown trigger="click" placement="bottomRight">
|
|
<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 === 'alarmStatus'">
|
|
<DictTag :options="dict.alarmStatus" :value="record.alarmStatus" />
|
|
</template>
|
|
</template>
|
|
</a-table>
|
|
</a-card>
|
|
</PageContainer>
|
|
</template>
|
|
|
|
<style lang="less" scoped>
|
|
.table :deep(.ant-pagination) {
|
|
padding: 0 24px;
|
|
}
|
|
</style>
|