!464 fix: add result field to JobLogDetail el-descriptions-item

Merge pull request !464 from AhJindeg/hotfix/JobLogDetail
pull/465/MERGE
芋道源码 2024-07-07 03:34:23 +00:00 committed by Gitee
commit 38fe69fbd4
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
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>