🔨 查询字段.

This commit is contained in:
lijiahangmax
2025-03-21 00:05:04 +08:00
parent 819520ef73
commit b3009bb65e
10 changed files with 37 additions and 23 deletions

View File

@@ -133,12 +133,14 @@
<!-- 最近执行 -->
<template #recentLog="{ record }">
<div class="flex-center" v-if="record.recentLogId && record.recentLogStatus">
<!-- 执行时间 -->
<span class="mr8">
{{ dateFormat(new Date(record.recentLogTime), 'MM-dd HH:mm:ss') }}
</span>
<!-- 执行状态 -->
<a-tag class="mr8" :color="getDictValue(execStatusKey, record.recentLogStatus, 'color')">
<a-tag :color="getDictValue(execStatusKey, record.recentLogStatus, 'color')">
{{ getDictValue(execStatusKey, record.recentLogStatus) }}
</a-tag>
<!-- 执行时间 -->
{{ dateFormat(new Date(record.recentLogTime), 'MM-dd HH:mm:ss') }}
</div>
<!-- 无任务 -->
<div v-else class="mx8">-</div>