fix(测试跟踪): 功能测试列表点击多选框的列触发打开详情,导致多选的数组被清空
--bug=1026378 --user=白奇 [测试跟踪]github#24493-测试计划>>功能测试列表: 1、在功能列表,想把测试用例移出计划,但是在列表操作复选框选中,要非常细心才能保证点中呢,只要稍微偏一点,就进行了页面跳转,再返回发现之前的工作都前功尽弃了。 https://www.tapd.cn/55049933/s/1373611
This commit is contained in:
parent
846a402e4d
commit
16d16b2479
|
@ -527,7 +527,11 @@ export default {
|
|||
this.moduleOptions
|
||||
);
|
||||
},
|
||||
handleRowClick(row, column) {
|
||||
handleRowClick (row, column) {
|
||||
// 多选框的列不触发点击行事件
|
||||
if (column.type === 'selection') {
|
||||
return;
|
||||
}
|
||||
this.$emit("handleRowClick", row, column);
|
||||
},
|
||||
handleRefresh() {
|
||||
|
@ -677,6 +681,16 @@ export default {
|
|||
background-color: #f5f7fa;
|
||||
}
|
||||
|
||||
.ms-table :deep(.el-table__body .el-checkbox__inner) {
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
}
|
||||
|
||||
.ms-table :deep(.el-table__body .el-checkbox__inner::after) {
|
||||
height: 9px;
|
||||
left: 5px;
|
||||
}
|
||||
|
||||
.disable-hover :deep(tr:hover > td) {
|
||||
background-color: #ffffff !important;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue