Compare commits

..

No commits in common. "db72c7c983dcce35b062e30777d502d9c8017bae" and "895c51f3b43d047efc5e45ccaf1cade734baf0a8" have entirely different histories.

1 changed files with 7 additions and 12 deletions

View File

@ -132,10 +132,9 @@
<el-table
:data="data.tableData2"
style="width: 100%; height: 480px"
class="table-style"
class="table_border"
:row-style="rowState"
:header-cell-style="tableHeaderColor"
>
<el-table-column
prop="starttime"
@ -162,9 +161,9 @@
width="132"
show-overflow-tooltip
/>
<el-table-column prop="finish" label="详情" width="120" fixed="right">
<el-table-column prop="finish" label="详情" width="120">
<template #default="scope">
<div @click="goDetail(scope.row)" style="cursor: pointer;">查看详情</div>
<div @click="goDetail(scope.row)">查看详情</div>
</template>
</el-table-column>
</el-table>
@ -826,9 +825,10 @@ onMounted(() => {});
}
}
// :deep(.el-table--enable-row-hover .el-table__body tr:hover > td) {
// background-color: #2f4b74 !important;
// }
:deep(.el-table--enable-row-hover .el-table__body tr:hover > td) {
background-color: #2f4b74;
}
:deep(.el-table__empty-block) {
background-color: #122560;
}
@ -878,9 +878,4 @@ onMounted(() => {});
background: rgba(255, 255, 255, 0.14);
border: 1px solid #6bade1;
}
</style>
<style scoped>
.table-style >>> .el-table__body tr:hover > td {
background-color: #2f4b74!important;
}
</style>