|
@@ -189,32 +189,64 @@ onMounted(() => {
|
|
|
|
|
|
/* 最基础的表格样式 */
|
|
|
.table-container {
|
|
|
- overflow-x: auto;
|
|
|
- background-color: white;
|
|
|
+ width: 100%;
|
|
|
+ max-width: 1200px;
|
|
|
+ margin: 0 auto;
|
|
|
+ overflow-x: auto; /* 防止内容溢出 */
|
|
|
}
|
|
|
+
|
|
|
.data-table {
|
|
|
- width: 100%;
|
|
|
- border-collapse: collapse;
|
|
|
- border: 1px solid #ccc;
|
|
|
+ border-collapse: collapse; /* 确保边框合并 */
|
|
|
+ border: 1px solid #ccc; /* 表格外边框 */
|
|
|
}
|
|
|
-.data-table th, .data-table td {
|
|
|
+
|
|
|
+.data-table th,
|
|
|
+.data-table td {
|
|
|
+ border: 1px solid #ccc; /* 单元格边框 */
|
|
|
padding: 8px 10px;
|
|
|
text-align: center;
|
|
|
- border: 1px solid #ccc;
|
|
|
font-size: 14px;
|
|
|
}
|
|
|
+
|
|
|
.data-table th {
|
|
|
font-weight: bold;
|
|
|
+ background-color: #f5f5f5; /* 表头背景色 */
|
|
|
}
|
|
|
-/* 完全移除所有行的背景色和悬停效果 */
|
|
|
-.data-table tr {
|
|
|
- background-color: transparent;
|
|
|
+
|
|
|
+/* 添加行分隔线效果 */
|
|
|
+.data-table tr:not(:last-child) {
|
|
|
+ border-bottom: 1px solid #e0e0e0; /* 行间分隔线 */
|
|
|
}
|
|
|
-.data-table tr:hover {
|
|
|
- background-color: transparent;
|
|
|
+
|
|
|
+/* 列宽分配 */
|
|
|
+.data-table th:nth-child(1),
|
|
|
+.data-table td:nth-child(1) { width: 10%; }/**污染源序号 */
|
|
|
+.data-table th:nth-child(2),
|
|
|
+.data-table td:nth-child(2) { width: 28%; }/**公司名 */
|
|
|
+.data-table th:nth-child(3),
|
|
|
+.data-table td:nth-child(3) { width: 16%; }/**类型 */
|
|
|
+.data-table th:nth-child(4),
|
|
|
+.data-table td:nth-child(4) { width: 10%; }/**位置区县 */
|
|
|
+.data-table th:nth-child(5),
|
|
|
+.data-table td:nth-child(5) { width: 12%; }/**颗粒物排放数据 */
|
|
|
+.data-table th:nth-child(6),
|
|
|
+.data-table td:nth-child(6) { width: 11%; }/**经度 */
|
|
|
+.data-table th:nth-child(7),
|
|
|
+.data-table td:nth-child(7) { width: 11%; }/**纬度 */
|
|
|
+
|
|
|
+/* 内容换行处理 */
|
|
|
+.data-table td {
|
|
|
+ word-wrap: break-word; /* 长内容自动换行 */
|
|
|
+ padding: 8px 5px; /* 调整内边距 */
|
|
|
}
|
|
|
-.empty-state {
|
|
|
- padding: 20px 0;
|
|
|
- color: #666;
|
|
|
+
|
|
|
+/* 移动端适配 */
|
|
|
+@media (max-width: 768px) {
|
|
|
+ .table-container {
|
|
|
+ padding: 10px 0;
|
|
|
+ }
|
|
|
+ .data-table {
|
|
|
+ font-size: 13px; /* 缩小字体 */
|
|
|
+ }
|
|
|
}
|
|
|
</style>
|