大屏调整

This commit is contained in:
2025-10-22 22:45:35 +08:00
parent c88f93d14c
commit 6dcfc0795d
4 changed files with 82 additions and 37 deletions

View File

@ -3,7 +3,7 @@
<el-table
ref="tableRef"
:data="tableData"
height="1540px"
height="1360px"
style="width: 100%"
>
<el-table-column label="序号" width="200px">
@ -539,7 +539,7 @@ const tableData = ref([
}
::v-deep .el-table {
background-color: transparent;
--el-table-border-color: rgba(22, 65, 85, 0.9);
--el-table-border-color: rgba(22, 65, 85, 0.5);
.cell {
line-height: normal;
color: #fff;
@ -552,31 +552,31 @@ const tableData = ref([
padding: 36px 0;
}
::v-deep .el-table th.el-table__cell {
background-color: #163155 !important;
background-color: #1631551f !important;
color: #c4f3fe;
margin: 0 0 4px 0;
font-size: 40px;
}
::v-deep .el-table tr {
background-color: rgba(22, 43, 85, 0.5);
background-color: rgba(22, 43, 85, 0);
}
::v-deep .el-table tr:nth-child(even) {
background-color: rgba(22, 51, 85, 0.9);
background-color: rgba(31, 84, 145, 0.473);
}
::v-deep .el-table td.el-table__cell,
.el-table th.el-table__cell.is-leaf {
border-bottom: 1px solid rgba(22, 41, 85, 0.5);
border-bottom: 1px solid rgba(22, 41, 85, 0);
font-size: 40px;
}
::v-deep .el-table th.el-table__cell.is-leaf {
border-bottom: 1px solid rgba(22, 41, 85, 0.9);
border-bottom: 1px solid rgba(22, 41, 85, 0.3);
}
::v-deep
.el-table--enable-row-hover
.el-table__body
tr:hover
> td.el-table__cell {
background-color: rgb(16, 68, 171);
background-color: rgb(16, 68, 171, 0.3);
color: #fff;
}
</style>