fix: 🐞 add result field to JobLogDetail el-descriptions-item

pull/464/head
AhJindeg 2024-06-25 11:21:16 +08:00
parent 7fe8b8b7a9
commit bd4f2b8b7c
2 changed files with 2 additions and 1 deletions

View File

@ -12,6 +12,7 @@ export interface JobLogVO {
duration: string
status: number
createTime: string
result: string
}
// 任务日志列表

View File

@ -26,7 +26,7 @@
<dict-tag :type="DICT_TYPE.INFRA_JOB_LOG_STATUS" :value="detailData.status" />
</el-descriptions-item>
<el-descriptions-item label="执行结果">
{{ detailData.duration + ' result' }}
{{ detailData.result }}
</el-descriptions-item>
</el-descriptions>
</Dialog>