190 lines
4.8 KiB
Vue
190 lines
4.8 KiB
Vue
<template>
|
|
<page-container>
|
|
<pro-search
|
|
:columns="columns"
|
|
target="alarm-log-detail"
|
|
@search="handleSearch"
|
|
/>
|
|
<JProTable
|
|
:columns="columns"
|
|
model="TABLE"
|
|
:request="queryList"
|
|
:params="params"
|
|
:defaultParams="{
|
|
terms,
|
|
sorts: [{ name: 'alarmTime', order: 'desc' }],
|
|
}"
|
|
>
|
|
<template #alarmTime="slotProps">{{
|
|
moment(slotProps.alarmTime).format('YYYY-MM-DD HH:mm:ss')
|
|
}}</template>
|
|
<template #action="slotProps">
|
|
<j-space
|
|
><template
|
|
v-for="i in getActions(slotProps, 'table')"
|
|
:key="i.key"
|
|
>
|
|
<PermissionButton
|
|
:disabled="i.disabled"
|
|
:popConfirm="i.popConfirm"
|
|
:tooltip="{
|
|
...i.tooltip,
|
|
}"
|
|
@click="i.onClick"
|
|
type="link"
|
|
style="padding: 0px"
|
|
>
|
|
<template #icon><AIcon :type="i.icon"/></template>
|
|
</PermissionButton>
|
|
</template>
|
|
</j-space>
|
|
</template>
|
|
</JProTable>
|
|
<Info v-if="visiable" :data="current" @close="close"/>
|
|
</page-container>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { detail, queryHistoryList } from '@/api/rule-engine/log';
|
|
import { useRoute } from 'vue-router';
|
|
import moment from 'moment';
|
|
import type { ActionsType } from '@/components/Table/index.vue';
|
|
import { message } from 'ant-design-vue';
|
|
import { useAlarmStore } from '@/store/alarm';
|
|
import Info from './info.vue';
|
|
import { storeToRefs } from 'pinia';
|
|
const route = useRoute();
|
|
const id = route.params?.id;
|
|
let visiable = ref(false);
|
|
const columns = [
|
|
{
|
|
title: '告警时间',
|
|
dataIndex: 'alarmTime',
|
|
key: 'alarmTime',
|
|
scopedSlots: true,
|
|
search: {
|
|
type: 'date',
|
|
},
|
|
},
|
|
{
|
|
title: '告警名称',
|
|
dataIndex: 'alarmConfigName',
|
|
key: 'alarmConfigName',
|
|
},
|
|
{
|
|
title: '说明',
|
|
dataIndex: 'description',
|
|
key: 'description',
|
|
},
|
|
{
|
|
title: '操作',
|
|
dataIndex: 'action',
|
|
key: 'action',
|
|
scopedSlots: true,
|
|
},
|
|
];
|
|
const getActions = (
|
|
data: Partial<Record<string, any>>,
|
|
type?: 'table',
|
|
): ActionsType[] => {
|
|
if (!data) {
|
|
return [];
|
|
}
|
|
const actions = [
|
|
{
|
|
key: 'view',
|
|
text: '查看',
|
|
tooltip: {
|
|
title: '查看',
|
|
},
|
|
icon: 'SearchOutlined',
|
|
onClick: () => {
|
|
current.value = data;
|
|
visiable.value = true;
|
|
},
|
|
},
|
|
];
|
|
return actions;
|
|
};
|
|
const terms = [
|
|
{
|
|
column: 'alarmRecordId',
|
|
termType: 'eq$not',
|
|
value: id,
|
|
type: 'and',
|
|
},
|
|
];
|
|
let params = ref({});
|
|
const alarmStore = useAlarmStore();
|
|
const { data } = alarmStore;
|
|
let current = ref(); // 当前告警记录信息
|
|
let details = ref(); // 告警记录的详情
|
|
/**
|
|
* 获取详情列表
|
|
*/
|
|
const queryList = async (params: any) => {
|
|
const res = await queryHistoryList({
|
|
...params,
|
|
// sorts: [{ name: 'alarmTime', order: 'desc' }],
|
|
});
|
|
if (res.status === 200) {
|
|
details.value = res.result.data[0];
|
|
return {
|
|
code: res.message,
|
|
result: {
|
|
data: res.result.data,
|
|
pageIndex: res.result.pageIndex,
|
|
pageSize: res.result.pageSize,
|
|
total: res.result.total,
|
|
},
|
|
status: res.status,
|
|
};
|
|
} else {
|
|
return {
|
|
code: 200,
|
|
result: {
|
|
data: [],
|
|
pageIndex: 0,
|
|
pageSize: 0,
|
|
total: 0,
|
|
},
|
|
status: 200,
|
|
};
|
|
}
|
|
};
|
|
/**
|
|
* 根据id初始化数据
|
|
*/
|
|
watchEffect(async () => {
|
|
const res = await detail(id);
|
|
if (res.status === 200) {
|
|
data.current = res.result;
|
|
if (res.result.targetType === 'device') {
|
|
columns.splice(2, 0, {
|
|
dataIndex: 'targetName',
|
|
title: '告警设备',
|
|
key: 'targetName',
|
|
});
|
|
}
|
|
}
|
|
});
|
|
const handleSearch = (_params: any) => {
|
|
params.value = _params;
|
|
};
|
|
|
|
/**
|
|
* 关闭模态弹窗
|
|
*/
|
|
const close = () => {
|
|
visiable.value = false
|
|
}
|
|
|
|
watchEffect(()=>{
|
|
current.value = details.value;
|
|
if(history.state?.params.detail && details.value){
|
|
visiable.value = true;
|
|
}
|
|
})
|
|
</script>
|
|
<style lang="less" scoped>
|
|
</style> |