修改时间格式显示,添加shell运行错误状态
This commit is contained in:
parent
b5073c1948
commit
513faea916
|
|
@ -646,7 +646,7 @@ export default {
|
||||||
>
|
>
|
||||||
<template #default="scope">
|
<template #default="scope">
|
||||||
<!-- 转为秒两位小数-->
|
<!-- 转为秒两位小数-->
|
||||||
{{ Math.ceil(scope.row.ShellDuration) }}
|
{{ Math.round(scope.row.ShellRuntime * 100) / 100 }}
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
|
|
@ -656,7 +656,7 @@ export default {
|
||||||
>
|
>
|
||||||
<template #default="scope">
|
<template #default="scope">
|
||||||
<!-- 转为秒两位小数-->
|
<!-- 转为秒两位小数-->
|
||||||
{{ Math.ceil(scope.row.ShellDuration) }}
|
{{ Math.round(scope.row.ShellDuration * 100) / 100 }}
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue