Industrial-image-management.../src/views/schedule/log/index.vue

171 lines
5.6 KiB
Vue
Raw Normal View History

2025-06-27 19:54:42 +08:00
<template>
<GiPageLayout>
<GiTable
row-key="id"
:data="dataList"
:columns="columns"
:loading="loading"
:scroll="{ x: '100%', y: '100%', minWidth: 1300 }"
:pagination="pagination"
:disabled-tools="['size']"
@refresh="search"
>
<template #toolbar-left>
<a-select
v-model="queryForm.groupName"
placeholder="请选择任务组"
:options="groupList"
style="width: 200px"
@change="search"
/>
<a-input-search v-model="queryForm.jobName" placeholder="搜索任务名称" allow-clear @search="search" />
<a-select
v-model="queryForm.taskBatchStatus"
placeholder="请选择状态"
:options="job_execute_status_enum"
allow-clear
style="width: 150px"
@change="search"
/>
<DateRangePicker v-model="queryForm.datetimeRange" :allow-clear="false" @change="search" />
<a-button @click="reset">
<template #icon><icon-refresh /></template>
<template #default>重置</template>
</a-button>
</template>
<template #taskBatchStatus="{ record }">
<GiCellTag :value="record.taskBatchStatus" :dict="job_execute_status_enum" />
</template>
<template #operationReason="{ record }">
<GiCellTag :value="record.operationReason" :dict="job_execute_reason_enum" />
</template>
<template #action="{ record }">
<a-space>
<a-link v-permission="['schedule:log:get']" title="详情" @click="onDetail(record)">详情</a-link>
<a-popconfirm content="是否确定停止本次执行?" type="warning" @ok="onStop(record)">
<a-link v-if="record.taskBatchStatus === 2" v-permission="['schedule:log:stop']" status="danger" title="停止">停止</a-link>
</a-popconfirm>
<a-popconfirm content="是否确定重试本次执行?" type="warning" @ok="onRetry(record)">
<a-link
v-if="record.taskBatchStatus === 4 || record.taskBatchStatus === 5 || record.taskBatchStatus === 6"
v-permission="['schedule:log:retry']"
status="danger"
title="重试"
>
重试
</a-link>
</a-popconfirm>
</a-space>
</template>
</GiTable>
<LogDetailDrawer ref="LogDetailDrawerRef" />
</GiPageLayout>
</template>
<script setup lang="ts">
import type { TableInstance } from '@arco-design/web-vue'
import { Message } from '@arco-design/web-vue'
import { useRoute } from 'vue-router'
import dayjs from 'dayjs'
import LogDetailDrawer from './LogDetailDrawer.vue'
import { type JobLogQuery, type JobLogResp, listGroup, listJobLog, retryJob, stopJob } from '@/apis/schedule'
import { useTable } from '@/hooks'
import { useDict } from '@/hooks/app'
import { isMobile } from '@/utils'
import has from '@/utils/has'
defineOptions({ name: 'ScheduleLog' })
const { job_execute_reason_enum, job_execute_status_enum } = useDict('job_execute_reason_enum', 'job_execute_status_enum')
const queryForm = reactive<JobLogQuery>({
datetimeRange: [
dayjs().subtract(6, 'day').startOf('day').format('YYYY-MM-DD HH:mm:ss'),
dayjs().endOf('day').format('YYYY-MM-DD HH:mm:ss'),
],
})
const {
tableData: dataList,
pagination,
loading,
search,
} = useTable((page) => listJobLog({ ...queryForm, ...page }), { immediate: false })
const columns: TableInstance['columns'] = [
{
title: '序号',
width: 66,
align: 'center',
render: ({ rowIndex }) => h('span', {}, rowIndex + 1 + (pagination.current - 1) * pagination.pageSize),
},
{ title: '任务组', dataIndex: 'groupName', minWidth: 80, ellipsis: true, tooltip: true },
{ title: '任务名称', dataIndex: 'jobName', minWidth: 80, ellipsis: true, tooltip: true },
{ title: '调度时间', dataIndex: 'createDt', width: 180 },
{ title: '执行状态', dataIndex: 'taskBatchStatus', slotName: 'taskBatchStatus', align: 'center' },
{ title: '执行备注', dataIndex: 'operationReason', slotName: 'operationReason', minWidth: 80, ellipsis: true, tooltip: true },
{ title: '执行时间', dataIndex: 'executionAt', width: 180 },
{
title: '操作',
slotName: 'action',
width: 130,
align: 'center',
fixed: !isMobile() ? 'right' : undefined,
show: has.hasPermOr(['schedule:log:get', 'schedule:log:stop', 'schedule:log:retry']),
},
]
const groupList = ref()
// 查询任务组列表
const getGroupList = async () => {
const { data } = await listGroup()
groupList.value = data?.map((item: string) => ({
label: item,
value: item,
}))
}
// 重置
const reset = () => {
queryForm.taskBatchStatus = undefined
queryForm.datetimeRange = [
dayjs().subtract(6, 'day').startOf('day').format('YYYY-MM-DD HH:mm:ss'),
dayjs().endOf('day').format('YYYY-MM-DD HH:mm:ss'),
]
search()
}
// 停止
const onStop = (record: JobLogResp) => {
stopJob(record.id).then(() => {
Message.success('停止成功')
})
}
// 重试
const onRetry = (record: JobLogResp) => {
retryJob(record.id).then(() => {
Message.success('重试成功')
})
}
const LogDetailDrawerRef = ref<InstanceType<typeof LogDetailDrawer>>()
// 详情
const onDetail = (record: JobLogResp) => {
LogDetailDrawerRef.value?.onOpen(record)
}
const route = useRoute()
onMounted(() => {
if (route.query) {
queryForm.jobId = route.query.jobId ? Number.parseInt(route.query.jobId as string, 10) : undefined
queryForm.groupName = route.query.groupName ? route.query.groupName : undefined
queryForm.jobName = route.query.jobName ? route.query.jobName : undefined
}
getGroupList()
search()
})
</script>
<style scoped lang="scss"></style>