fix(接口测试): 修复接口测试首页定时任务表格数据显示错误的问题
--bug=1020057 --user=宋天阳 【接口测试】接口测试首页场景的定时任务的下次执行时间错误 {#_orginal_url#}
This commit is contained in:
parent
fa88d3d321
commit
d16ef035c7
|
@ -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>
|
||||
|
||||
|
|
Loading…
Reference in New Issue