fix(测试跟踪): 缺陷导出自定义字段名称过长展示优化
--bug=1019765 --user=宋昌昌 【测试跟踪】缺陷管理-导出-自定义字段显示不全 https://www.tapd.cn/55049933/s/1301020
This commit is contained in:
parent
00ec9e9820
commit
d1e17b93c1
|
@ -568,4 +568,8 @@ export default {
|
||||||
:deep(.el-table) {
|
:deep(.el-table) {
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
span.operate-button button {
|
||||||
|
margin-left: 10px;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
@ -3,8 +3,8 @@
|
||||||
<el-row v-for="rowIndex in fieldRowCount" :key="rowIndex">
|
<el-row v-for="rowIndex in fieldRowCount" :key="rowIndex">
|
||||||
<span v-for="(item, index) in fields"
|
<span v-for="(item, index) in fields"
|
||||||
:key="item.id">
|
:key="item.id">
|
||||||
<el-col :span="6"
|
<el-tooltip :content="item.name" :disabled="item.name.length < 6">
|
||||||
v-if="Math.floor(index / colCountEachRow) === rowIndex - 1">
|
<el-col :span="6" v-if="Math.floor(index / colCountEachRow) === rowIndex - 1">
|
||||||
<el-checkbox
|
<el-checkbox
|
||||||
v-model="item.enable"
|
v-model="item.enable"
|
||||||
:disabled="item.disabled"
|
:disabled="item.disabled"
|
||||||
|
@ -12,6 +12,7 @@
|
||||||
{{ item.name }}
|
{{ item.name }}
|
||||||
</el-checkbox>
|
</el-checkbox>
|
||||||
</el-col>
|
</el-col>
|
||||||
|
</el-tooltip>
|
||||||
</span>
|
</span>
|
||||||
</el-row>
|
</el-row>
|
||||||
</div>
|
</div>
|
||||||
|
@ -46,4 +47,13 @@ export default {
|
||||||
.el-row {
|
.el-row {
|
||||||
margin-bottom: 10px;
|
margin-bottom: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
:deep(.el-checkbox .el-checkbox__label) {
|
||||||
|
overflow: hidden;
|
||||||
|
white-space: nowrap;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
max-width: 100px;
|
||||||
|
position: relative;
|
||||||
|
top: 5px;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
Loading…
Reference in New Issue