|
@@ -973,8 +973,11 @@ onUnmounted(() => {
|
|
|
<el-table
|
|
<el-table
|
|
|
:loading="certLoading"
|
|
:loading="certLoading"
|
|
|
:data="certTableData"
|
|
:data="certTableData"
|
|
|
- height="100%"
|
|
|
|
|
- class="certificate-table">
|
|
|
|
|
|
|
+ height="100vh"
|
|
|
|
|
+ :header-cell-style="{
|
|
|
|
|
+ height: '42px'
|
|
|
|
|
+ }"
|
|
|
|
|
+ class="device-list-table production-brief-table">
|
|
|
<el-table-column label="序号" width="80" align="center">
|
|
<el-table-column label="序号" width="80" align="center">
|
|
|
<template #default="scope">
|
|
<template #default="scope">
|
|
|
{{ (certQueryParams.pageNo - 1) * certQueryParams.pageSize + scope.$index + 1 }}
|
|
{{ (certQueryParams.pageNo - 1) * certQueryParams.pageSize + scope.$index + 1 }}
|
|
@@ -1393,7 +1396,7 @@ onUnmounted(() => {
|
|
|
.certificate-table-panel {
|
|
.certificate-table-panel {
|
|
|
margin-top: 18px;
|
|
margin-top: 18px;
|
|
|
padding: 18px 18px 12px;
|
|
padding: 18px 18px 12px;
|
|
|
- height: 760px;
|
|
|
|
|
|
|
+ height: 860px;
|
|
|
display: flex;
|
|
display: flex;
|
|
|
flex-direction: column;
|
|
flex-direction: column;
|
|
|
}
|
|
}
|
|
@@ -1402,13 +1405,27 @@ onUnmounted(() => {
|
|
|
flex: 1;
|
|
flex: 1;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
-.certificate-table :deep(.el-table) {
|
|
|
|
|
- --el-table-header-bg-color: rgba(248, 251, 255, 0.95);
|
|
|
|
|
- --el-table-row-hover-bg-color: rgba(79, 141, 255, 0.06);
|
|
|
|
|
- border-radius: 14px;
|
|
|
|
|
-}
|
|
|
|
|
|
|
+// :deep(.el-table) {
|
|
|
|
|
+// --el-table-header-bg-color: rgba(248, 251, 255, 0.95);
|
|
|
|
|
+// --el-table-row-hover-bg-color: rgba(79, 141, 255, 0.06);
|
|
|
|
|
+// border-radius: 14px;
|
|
|
|
|
+// }
|
|
|
|
|
|
|
|
.certificate-pagination {
|
|
.certificate-pagination {
|
|
|
padding-top: 14px;
|
|
padding-top: 14px;
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
|
|
+.production-brief-table {
|
|
|
|
|
+ width: 100%;
|
|
|
|
|
+
|
|
|
|
|
+ :deep(.el-table__header-wrapper th.el-table__cell) {
|
|
|
|
|
+ font-size: calc(16px * var(--kb-scale, 1));
|
|
|
|
|
+ line-height: 1.2;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ :deep(.el-table__body td.el-table__cell) {
|
|
|
|
|
+ padding: calc(7px * var(--kb-scale, 1)) 0;
|
|
|
|
|
+ font-size: calc(14px * var(--kb-scale, 1));
|
|
|
|
|
+ }
|
|
|
|
|
+}
|
|
|
</style>
|
|
</style>
|