fix(测试跟踪): 评审关联用例列表column设置最小宽度
--bug=1026763 --user=宋昌昌 【测试跟踪】用例评审-关联用例-表头字段换行显示且创建时间和更新时间默认显示不全 https://www.tapd.cn/55049933/s/1386093
This commit is contained in:
parent
113e31bd73
commit
8d37c2269f
|
@ -2,7 +2,7 @@
|
|||
<ms-table-column :field="field"
|
||||
:fields-width="fieldsWidth"
|
||||
prop="createTime"
|
||||
min-width="140px"
|
||||
min-width="160px"
|
||||
:sortable="sortable"
|
||||
:label="$t('commons.create_time')">
|
||||
<template v-slot:default="scope">
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
<ms-table-column :field="field"
|
||||
:fields-width="fieldsWidth"
|
||||
prop="updateTime"
|
||||
min-width="140px"
|
||||
min-width="160px"
|
||||
sortable
|
||||
:label="$t('api_test.mock.table.update_time')">
|
||||
<template v-slot:default="scope">
|
||||
|
|
|
@ -59,6 +59,7 @@
|
|||
<el-table-column
|
||||
v-if="!customNum"
|
||||
prop="num"
|
||||
min-width="120"
|
||||
sortable
|
||||
:label="$t('commons.id')">
|
||||
</el-table-column>
|
||||
|
@ -66,6 +67,7 @@
|
|||
<el-table-column
|
||||
v-if="customNum"
|
||||
prop="customNum"
|
||||
min-width="120"
|
||||
sortable
|
||||
:label="$t('commons.id')">
|
||||
</el-table-column>
|
||||
|
@ -97,6 +99,7 @@
|
|||
:filters="priorityFilters"
|
||||
column-key="priority"
|
||||
:label="$t('test_track.case.priority')"
|
||||
min-width="120"
|
||||
show-overflow-tooltip>
|
||||
<template v-slot:default="scope">
|
||||
<priority-table-item :value="scope.row.priority" :priority-options="priorityFilters"/>
|
||||
|
@ -107,6 +110,7 @@
|
|||
:filters="statusFilters"
|
||||
column-key="reviewStatus"
|
||||
:label="$t('test_track.case.status')"
|
||||
min-width="120"
|
||||
show-overflow-tooltip>
|
||||
<template v-slot:default="scope">
|
||||
<review-status :value="scope.row.reviewStatus"/>
|
||||
|
|
Loading…
Reference in New Issue