fix(接口测试): 修复接口测试首页定时任务表格数据显示错误的问题

--bug=1020057 --user=宋天阳 【接口测试】接口测试首页场景的定时任务的下次执行时间错误 {#_orginal_url#}
This commit is contained in:
song-tianyang 2022-11-22 16:02:58 +08:00 committed by 建国
parent 7c6fb6a013
commit 37a84ed5aa
1 changed files with 4 additions and 3 deletions

View File

@ -65,16 +65,17 @@
<!--运行规则-->
<el-table-column prop="rule" :label="$t('home.table.run_rule')" min-width="150" show-overflow-tooltip>
</el-table-column>
<!--下次更新时间-->
<!--更新时间-->
<el-table-column :label="$t('home.table.update_time')" width="170">
<template v-slot:default="scope">
{{ scope.row.updateTime | datetimeFormat }}
</template>
</el-table-column>
<!--更新时间-->
<!--下次更新时间-->
<el-table-column :label="$t('home.table.next_execution_time')" width="170">
<template v-slot:default="scope">
{{ scope.row.updateTime | datetimeFormat }}
{{ scope.row.nextExecutionTime | datetimeFormat }}
</template>
</el-table-column>