This commit is contained in:
zk
2023-12-20 09:05:44 +08:00
parent 8dccce0208
commit 26f4a6ad81
20 changed files with 804 additions and 380 deletions
@@ -10,8 +10,8 @@
:columns="monitorColumns"
:dataSource="dataSource"
:pagination="pagination"
:rowClassName="(record, index) => (index % 2 === 1 ? 'table-default' : 'table-striped')"
class="ant-table-striped"
:rowClassName="(record, index) => (index % 2 === 1 ? 'table-default no-white' : 'table-striped no-white')"
class="ant-table-striped three-table"
>
<template #address="{ text, record }">
<div class="police-times" @click="handlePoliceDetail(record)">
@@ -139,12 +139,25 @@
padding: 6px 4px;
}
:deep(.ant-table-tbody > tr.ant-table-placeholder:hover > td) {
background-color: transparent !important;
}
:deep(.ant-table-row:hover) {
background-color: transparent;
color: #ffffff;
}
}
:deep(.ant-table-tbody > .no-white > td) {
background-color: blue;
}
.no-white,
.no-white:hover > td {
background-color: blue;
}
//奇行
.ant-table-striped :deep(.table-striped) td {
background-color: #0a0a0c;