|
|
@@ -131,7 +131,20 @@ const waterSystemTableData = reactive([
|
|
|
{ name: "吴淞江", type: "河道", lengthOrArea: "18.7 km" },
|
|
|
{ name: "淀山湖", type: "湖泊", lengthOrArea: "62 km²" },
|
|
|
{ name: "阳澄湖", type: "湖泊", lengthOrArea: "120 km²" },
|
|
|
- { name: "青阳港", type: "河道", lengthOrArea: "8.5 km" }
|
|
|
+ { name: "青阳港", type: "河道", lengthOrArea: "8.5 km" },
|
|
|
+ { name: "杨林塘", type: "河道", lengthOrArea: "12.3 km" },
|
|
|
+ { name: "急水港", type: "河道", lengthOrArea: "9.8 km" },
|
|
|
+ { name: "千灯浦", type: "河道", lengthOrArea: "7.6 km" },
|
|
|
+ { name: "大直港", type: "河道", lengthOrArea: "6.9 km" },
|
|
|
+ { name: "小直港", type: "河道", lengthOrArea: "5.4 km" },
|
|
|
+ { name: "茆沙塘", type: "河道", lengthOrArea: "8.2 km" },
|
|
|
+ { name: "张家港河", type: "河道", lengthOrArea: "10.5 km" },
|
|
|
+ { name: "七浦塘", type: "河道", lengthOrArea: "11.7 km" },
|
|
|
+ { name: "白茆塘", type: "河道", lengthOrArea: "9.3 km" },
|
|
|
+ { name: "傀儡湖", type: "湖泊", lengthOrArea: "3.8 km²" },
|
|
|
+ { name: "鳗鲡湖", type: "湖泊", lengthOrArea: "2.5 km²" },
|
|
|
+ { name: "金鸡湖", type: "湖泊", lengthOrArea: "7.4 km²" },
|
|
|
+ { name: "独墅湖", type: "湖泊", lengthOrArea: "11.5 km²" }
|
|
|
])
|
|
|
|
|
|
</script>
|
|
|
@@ -146,18 +159,19 @@ const waterSystemTableData = reactive([
|
|
|
}
|
|
|
|
|
|
.chart-section {
|
|
|
- flex: 1;
|
|
|
- min-height: 150px;
|
|
|
- margin-bottom: 15px;
|
|
|
+ height: 150px;
|
|
|
+ margin-bottom: 10px;
|
|
|
}
|
|
|
|
|
|
.table-section {
|
|
|
flex: 1;
|
|
|
- min-height: 120px;
|
|
|
+ min-height: 100px;
|
|
|
background-color: rgba(10, 40, 60, 0.3);
|
|
|
border-radius: 4px;
|
|
|
border: 1px solid rgba(63, 91, 115, 0.3);
|
|
|
overflow: hidden;
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
}
|
|
|
|
|
|
.table-header {
|
|
|
@@ -167,6 +181,7 @@ const waterSystemTableData = reactive([
|
|
|
color: #30DCFF;
|
|
|
font-weight: bold;
|
|
|
border-bottom: 1px solid rgba(63, 91, 115, 0.5);
|
|
|
+ flex-shrink: 0;
|
|
|
}
|
|
|
|
|
|
.header-item {
|
|
|
@@ -176,8 +191,9 @@ const waterSystemTableData = reactive([
|
|
|
}
|
|
|
|
|
|
.table-body {
|
|
|
- height: calc(100% - 40px);
|
|
|
+ flex: 1;
|
|
|
overflow-y: auto;
|
|
|
+ max-height: 120px;
|
|
|
}
|
|
|
|
|
|
.table-row {
|