修改时间格式显示,添加shell运行错误状态

This commit is contained in:
junleea 2025-08-03 18:05:18 +08:00
parent b5073c1948
commit 513faea916
1 changed files with 2 additions and 2 deletions

View File

@ -646,7 +646,7 @@ export default {
>
<template #default="scope">
<!-- 转为秒两位小数-->
{{ Math.ceil(scope.row.ShellDuration) }}
{{ Math.round(scope.row.ShellRuntime * 100) / 100 }}
</template>
</el-table-column>
<el-table-column
@ -656,7 +656,7 @@ export default {
>
<template #default="scope">
<!-- 转为秒两位小数-->
{{ Math.ceil(scope.row.ShellDuration) }}
{{ Math.round(scope.row.ShellDuration * 100) / 100 }}
</template>
</el-table-column>