Compare commits
No commits in common. "db72c7c983dcce35b062e30777d502d9c8017bae" and "895c51f3b43d047efc5e45ccaf1cade734baf0a8" have entirely different histories.
db72c7c983
...
895c51f3b4
|
@ -132,10 +132,9 @@
|
||||||
<el-table
|
<el-table
|
||||||
:data="data.tableData2"
|
:data="data.tableData2"
|
||||||
style="width: 100%; height: 480px"
|
style="width: 100%; height: 480px"
|
||||||
class="table-style"
|
class="table_border"
|
||||||
:row-style="rowState"
|
:row-style="rowState"
|
||||||
:header-cell-style="tableHeaderColor"
|
:header-cell-style="tableHeaderColor"
|
||||||
|
|
||||||
>
|
>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="starttime"
|
prop="starttime"
|
||||||
|
@ -162,9 +161,9 @@
|
||||||
width="132"
|
width="132"
|
||||||
show-overflow-tooltip
|
show-overflow-tooltip
|
||||||
/>
|
/>
|
||||||
<el-table-column prop="finish" label="详情" width="120" fixed="right">
|
<el-table-column prop="finish" label="详情" width="120">
|
||||||
<template #default="scope">
|
<template #default="scope">
|
||||||
<div @click="goDetail(scope.row)" style="cursor: pointer;">查看详情</div>
|
<div @click="goDetail(scope.row)">查看详情</div>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
</el-table>
|
</el-table>
|
||||||
|
@ -826,9 +825,10 @@ onMounted(() => {});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// :deep(.el-table--enable-row-hover .el-table__body tr:hover > td) {
|
:deep(.el-table--enable-row-hover .el-table__body tr:hover > td) {
|
||||||
// background-color: #2f4b74 !important;
|
background-color: #2f4b74;
|
||||||
// }
|
}
|
||||||
|
|
||||||
:deep(.el-table__empty-block) {
|
:deep(.el-table__empty-block) {
|
||||||
background-color: #122560;
|
background-color: #122560;
|
||||||
}
|
}
|
||||||
|
@ -879,8 +879,3 @@ onMounted(() => {});
|
||||||
border: 1px solid #6bade1;
|
border: 1px solid #6bade1;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
<style scoped>
|
|
||||||
.table-style >>> .el-table__body tr:hover > td {
|
|
||||||
background-color: #2f4b74!important;
|
|
||||||
}
|
|
||||||
</style>
|
|
Loading…
Reference in New Issue