style(接口测试): 修改场景报告列表页样式

--bug=1025574 --user=王孝刚 【接口测试】报告-场景/用例-创建时间/更新时间-默认显示换行了
https://www.tapd.cn/55049933/s/1364004
This commit is contained in:
wxg0103 2023-04-18 19:08:52 +08:00 committed by 刘瑞斌
parent 348e616826
commit bc40cee1b4
1 changed files with 10 additions and 2 deletions

View File

@ -104,12 +104,20 @@
width="150"
show-overflow-tooltip
:filters="userFilters" />
<el-table-column prop="createTime" min-width="120" :label="$t('commons.create_time')" sortable>
<el-table-column
prop="createTime"
min-width="125"
:label="$t('commons.create_time')"
sortable>
<template v-slot:default="scope">
<span>{{ scope.row.createTime | datetimeFormat }}</span>
</template>
</el-table-column>
<el-table-column prop="endTime" min-width="120" :label="$t('report.test_end_time')" sortable>
<el-table-column
prop="endTime"
min-width="125"
:label="$t('report.test_end_time')"
sortable>
<template v-slot:default="scope">
<span v-if="scope.row.endTime && scope.row.endTime > 0">
{{ scope.row.endTime | datetimeFormat }}