AutoTeam-F / web /src /components /TaskHistoryPage.vue
ZRainbow's picture
feat: AutoTeam 大版本升级:安全轮换、并行、IPv6、指纹加固与前端重构
1f4cfcb
Raw
History Blame Contribute Delete
397 Bytes
<template>
<div>
<h2 class="text-xl font-bold text-ink-950 mb-2">任务历史</h2>
<p class="text-sm text-ink-500 mb-6">
查看后台任务的执行状态、耗时、参数和结果,便于排查失败原因。
</p>
<TaskHistory :tasks="tasks" />
</div>
</template>
<script setup>
import TaskHistory from './TaskHistory.vue'
defineProps({
tasks: Array,
})
</script>