You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
258 lines
7.8 KiB
258 lines
7.8 KiB
1 month ago
|
<script lang="ts" setup>
|
||
|
import { Badge, Switch } from 'ant-design-vue'
|
||
|
import { onMounted, ref } from 'vue'
|
||
|
|
||
|
import { color } from 'echarts'
|
||
|
import HistoryModal from '../../exa/config/HistoryModal.vue'
|
||
|
import { columns, searchFormSchema } from './instant.data'
|
||
|
import CreateModal from './CreateModal.vue'
|
||
|
import { BasicTable, TableAction, useTable } from '@/components/Table'
|
||
|
import { getInstantCount, getInstantPage, updateInstant } from '@/api/alert/run/instant'
|
||
|
import { getExaNow } from '@/api/alert/exa'
|
||
|
import { useI18n } from '@/hooks/web/useI18n'
|
||
|
import { router } from '@/router'
|
||
|
import { useMessage } from '@/hooks/web/useMessage'
|
||
|
import { IconEnum } from '@/enums/appEnum'
|
||
|
import { useModal } from '@/components/Modal'
|
||
|
|
||
|
defineOptions({ name: 'Instant' })
|
||
|
const { createMessage } = useMessage()
|
||
|
const { t } = useI18n()
|
||
|
|
||
|
const [registerHistoryModal, { openModal: openHistoryModal }] = useModal()
|
||
|
const [registerCreateModal, { openModal: openCreateModal }] = useModal()
|
||
|
|
||
|
const [registerTable, { getForm, reload, getDataSource, updateTableDataRecord }] = useTable({
|
||
|
title: '实例列表',
|
||
|
api: getInstantPage,
|
||
|
rowKey: 'id',
|
||
|
immediate: true,
|
||
|
columns,
|
||
|
formConfig: {
|
||
|
labelWidth: 120,
|
||
|
schemas: searchFormSchema,
|
||
|
showResetButton: false,
|
||
|
actionColOptions: {
|
||
|
span: 2,
|
||
|
},
|
||
|
|
||
|
},
|
||
|
useSearchForm: true,
|
||
|
showTableSetting: true,
|
||
|
showIndexColumn: false,
|
||
|
actionColumn: {
|
||
|
width: 240,
|
||
|
title: t('common.action'),
|
||
|
dataIndex: 'action',
|
||
|
fixed: 'right',
|
||
|
},
|
||
|
})
|
||
|
|
||
|
function handleDetail(record) {
|
||
|
console.log(record)
|
||
|
router.push(`/run/instant/detail?id=${record.id}`)
|
||
|
}
|
||
|
|
||
|
async function updateStatus(record) {
|
||
|
await updateInstant(record)
|
||
|
createMessage.success(t('common.saveSuccessText'))
|
||
|
console.log(record)
|
||
|
reload()
|
||
|
}
|
||
|
const isShow = ref<boolean>(false)
|
||
|
|
||
|
function handleCreate() {
|
||
|
openCreateModal(true, { isUpdate: false })
|
||
|
isShow.value = true
|
||
|
}
|
||
|
|
||
|
function handleEdit(record: Recordable) {
|
||
|
openModal(true, { record, isUpdate: true })
|
||
|
}
|
||
|
async function handleDelete(record: Recordable) {
|
||
|
await deleteRole(record.id)
|
||
|
createMessage.success(t('common.delSuccessText'))
|
||
|
reload()
|
||
|
}
|
||
|
|
||
|
const itemName = ref<string>()
|
||
|
const legendName = ref<string[]>()
|
||
|
function handleHistory(record: Recordable) {
|
||
|
itemName.value = (JSON.parse(record.instantInfo)).model_state
|
||
|
legendName.value = []
|
||
|
legendName.value.push(`${record.mpName}-${itemName.value}`)
|
||
|
openHistoryModal(true, { record })
|
||
|
}
|
||
|
interface countObj {
|
||
|
normal: number
|
||
|
outside: number
|
||
|
failure: number
|
||
|
update: number
|
||
|
stop: number
|
||
|
}
|
||
|
const countData = ref<countObj>()
|
||
|
onMounted(async () => {
|
||
|
countData.value = await getInstantCount()
|
||
|
console.log(countData.value)
|
||
|
getNow()
|
||
|
})
|
||
|
async function getTableData(type) {
|
||
|
const { getFieldsValue, setFieldsValue } = getForm()
|
||
|
await setFieldsValue({ runningLog: null, running: null, isUpdate: null })
|
||
|
if (type === 'normal') {
|
||
|
await setFieldsValue({ runningLog: '运行正常' })
|
||
|
console.log(getFieldsValue())
|
||
|
}
|
||
|
else if (type === 'outside') {
|
||
|
await setFieldsValue({ runningLog: '模式外运行' })
|
||
|
}
|
||
|
else if (type === 'stop') {
|
||
|
await setFieldsValue({ runningLog: '模型已停运' })
|
||
|
}
|
||
|
else if (type === 'failure') {
|
||
|
await setFieldsValue({ running: 0 })
|
||
|
}
|
||
|
else if (type === 'isUpdate') {
|
||
|
await setFieldsValue({ isUpdate: 1 })
|
||
|
}
|
||
|
else {
|
||
|
await setFieldsValue({ runningLog: null, running: null, isUpdate: null })
|
||
|
}
|
||
|
reload()
|
||
|
}
|
||
|
async function getNow() {
|
||
|
const params = getDataSource()
|
||
|
params.forEach((item: any) => {
|
||
|
const pointCode = (JSON.parse(item.instantInfo)).model_state
|
||
|
// 对数组中的每个元素执行异步操作
|
||
|
getExaNow(pointCode).then((result) => {
|
||
|
updateTableDataRecord(item.id, Object.assign(item, { pointSte: result }))
|
||
|
})
|
||
|
})
|
||
|
}
|
||
|
|
||
|
function handleWarnConfig() {
|
||
|
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<div>
|
||
|
<BasicTable @register="registerTable">
|
||
|
<template #detail="{ record }">
|
||
|
<a class="click-status" @click="handleDetail(record)">
|
||
|
{{ record.mpName }}
|
||
|
</a>
|
||
|
|
||
|
<!-- <SlidersOutlined class="click-status" /> -->
|
||
|
</template>
|
||
|
<!-- 统计量点击跳转历史曲线 -->
|
||
|
<template #history="{ record }">
|
||
|
<a @click="handleHistory(record)">
|
||
|
{{ record.pointSte }}
|
||
|
</a>
|
||
|
<!-- <SlidersOutlined class="click-status" /> -->
|
||
|
</template>
|
||
|
<template #toolbar>
|
||
|
<span class="runningStatus" @click="getTableData('all')">
|
||
|
全部</span>
|
||
|
<Badge
|
||
|
:class="countData?.normal === 0 ? 'runningStatus' : 'runningStatus alarm'" color="green" text="正常运行"
|
||
|
@click="getTableData('normal')"
|
||
|
/>
|
||
|
<Badge
|
||
|
:class="countData?.outside === 0 ? 'runningStatus' : 'runningStatus alarm'" color="#0B55A4" text="模式外运行"
|
||
|
@click="getTableData('outside')"
|
||
|
/>
|
||
|
<Badge
|
||
|
:class="countData?.failure === 0 ? 'runningStatus' : 'runningStatus alarm'" color="red" text="运行失败"
|
||
|
@click="getTableData('failure')"
|
||
|
/>
|
||
|
<Badge
|
||
|
:class="countData?.update === 0 ? 'runningStatus' : 'runningStatus alarm'" color="orange" text="版本更新"
|
||
|
@click="getTableData('isUpdate')"
|
||
|
/>
|
||
|
<Badge
|
||
|
:class="countData?.stop === 0 ? 'runningStatus' : 'runningStatus alarm'" color="black" text="模型停运"
|
||
|
@click="getTableData('stop')"
|
||
|
/>
|
||
|
<a-button v-auth="['run:instant:create']" type="primary" :pre-icon="IconEnum.ADD" @click="handleCreate">
|
||
|
{{ t('action.create') }}
|
||
|
</a-button>
|
||
|
</template>
|
||
|
<template #runStatus="{ record }">
|
||
|
<div v-if="record.runningLog === '模式已停运'">
|
||
|
<span style="color:black">模式已停运</span>
|
||
|
</div>
|
||
|
<div v-else-if="record.running === '0'">
|
||
|
<span style="color:red">运行失败</span>
|
||
|
</div>
|
||
|
<div v-else-if="record.runningLog === '模式外运行'">
|
||
|
<span style="color:#0B55A4">模式外运行</span>
|
||
|
</div>
|
||
|
<div v-else-if="record.isUpdate === '1'">
|
||
|
<span style="color:orange">版本更新</span>
|
||
|
</div>
|
||
|
<div v-else>
|
||
|
<span style="color:green">正常运行</span>
|
||
|
</div>
|
||
|
</template>
|
||
|
<template #status="{ record }">
|
||
|
<Switch
|
||
|
v-model:checked="record.status" :checked-value="1" :un-checked-value="0" checked-children="开"
|
||
|
un-checked-children="关" @change="updateStatus(record)"
|
||
|
/>
|
||
|
</template>
|
||
|
<template #bodyCell="{ column, record }">
|
||
|
<template v-if="column.key === 'action'">
|
||
|
<TableAction
|
||
|
:actions="[
|
||
|
{ icon: IconEnum.WARN, label: t('action.warnConfig'), auth: 'run:instant:warnConfig', onClick: handleWarnConfig.bind(null, record) },
|
||
|
|
||
|
{ icon: IconEnum.EDIT, label: t('action.edit'), auth: 'run:instant:update', onClick: handleEdit.bind(null, record) },
|
||
|
{
|
||
|
icon: IconEnum.DELETE,
|
||
|
danger: true,
|
||
|
label: t('action.delete'),
|
||
|
auth: 'run:instant:delete',
|
||
|
popConfirm: {
|
||
|
title: t('common.delMessage'),
|
||
|
placement: 'left',
|
||
|
confirm: handleDelete.bind(null, record),
|
||
|
},
|
||
|
},
|
||
|
]"
|
||
|
/>
|
||
|
</template>
|
||
|
</template>
|
||
|
</BasicTable>
|
||
|
<HistoryModal :item-name="itemName" :legend-name="legendName" @register="registerHistoryModal" />
|
||
|
<CreateModal :item-name="itemName" :legend-name="legendName" @register="registerCreateModal" @success="reload" />
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<style lang="less" scoped>
|
||
|
:deep(.instant) {
|
||
|
font-weight: bold;
|
||
|
color: #0B55A4
|
||
|
}
|
||
|
|
||
|
:deep(.alarm .ant-badge-status-dot) {
|
||
|
animation: flash 1s linear infinite;
|
||
|
}
|
||
|
|
||
|
@keyframes flash {
|
||
|
from {
|
||
|
opacity: 0;
|
||
|
}
|
||
|
|
||
|
to {
|
||
|
opacity: 1;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.runningStatus {
|
||
|
cursor: pointer;
|
||
|
}
|
||
|
</style>
|