{{ item.label }}
@@ -38,13 +47,35 @@ export default {
value: 2
}
],
- activeTab: 1
+ activeTab: 1,
+ tabDataList: [
+ {
+ name: '全部',
+ value: '0'
+ },
+ {
+ name: '待审批',
+ value: '1'
+ },
+ {
+ name: '带研判',
+ value: '2'
+ },
+ {
+ name: '已归档',
+ value: '3'
+ }
+ ],
+ activeDateTab:'0',
}
},
methods: {
tabChange(val) {
this.activeTab = val
- }
+ },
+ tabDateChange(val) {
+ this.activeDateTab = val
+ },
}
}
@@ -95,5 +126,35 @@ export default {
height: 100%;
}
}
+
+ .right-tab {
+ height: 100%;
+ .flex-row;
+ justify-content: space-between;
+ width: 249px;
+
+ .tab-type {
+ margin-bottom: 15px;
+ width: 57px;
+ height: 30px;
+ .bg("~/assets/peakCoalImages/left/pollutant-type-default-bg.png");
+ font-family: MicrosoftYaHei;
+ font-size: 14px;
+ color: rgba(216, 240, 255, 0.50);
+ letter-spacing: 0;
+ text-align: center;
+ line-height: 30px;
+ text-shadow: 0 0 11px #0091FF;
+ font-weight: 400;
+ cursor: pointer;
+ }
+
+ .active-tab {
+ .bg("~/assets/peakCoalImages/left/pollutant-type-active-bg.png");
+ color: #D8F0FF;
+ text-shadow: 0 0 33px #0091FF;
+ font-weight: 400;
+ }
+ }
}
diff --git a/components/peak-coal-monitoring/AtmosphericModule.vue b/components/peak-coal-monitoring/AtmosphericModule.vue
index 3ed25d4..217587f 100644
--- a/components/peak-coal-monitoring/AtmosphericModule.vue
+++ b/components/peak-coal-monitoring/AtmosphericModule.vue
@@ -2,18 +2,27 @@
-
{{ item.label }}
+
{{ item.label }}
+
+
+
+
+
diff --git a/components/peak-coal-monitoring/DeviceOverview.vue b/components/peak-coal-monitoring/DeviceOverview.vue
index f4c31c1..9113357 100644
--- a/components/peak-coal-monitoring/DeviceOverview.vue
+++ b/components/peak-coal-monitoring/DeviceOverview.vue
@@ -1,6 +1,43 @@
@@ -22,5 +59,59 @@ export default {
.device-overview{
height: 100%;
width: 100%;
+ .flex-column;
+ .device-total{
+ flex: 1;
+ height: 0;
+ .flex-row;
+ justify-content: space-around;
+ .device-item{
+ height: 60%;
+ width: 140px;
+ .flex-column;
+ justify-content: space-between;
+ align-items: center;
+ .point-icon{
+ width: 61px;
+ height: 61px;
+ background: url("~/assets/peakCoalMonitoring/right/point-icon.png") no-repeat;
+ }
+ .microsite-icon{
+ width: 61px;
+ height: 61px;
+ background: url("~/assets/peakCoalMonitoring/right/microsite-icon.png") no-repeat;
+ }
+ .tester-icon{
+ width: 61px;
+ height: 61px;
+ background: url("~/assets/peakCoalMonitoring/right/tester-icon.png") no-repeat;
+ }
+ .title-value{
+ .flex-row;
+ ._title{
+ font-family: MicrosoftYaHei;
+ font-size: 14px;
+ color: #6AC4FF;
+ letter-spacing: 2.26px;
+ font-weight: 400;
+ }
+ ._value {
+ padding-left: 10px;
+ font-family: YouSheBiaoTiHei;
+ font-size: 18px;
+ color: #FFFFFF;
+ letter-spacing: 5.64px;
+ font-weight: 400;
+ text-align: right;
+ .text-ellipsis;
+ }
+ }
+ }
+ ._line{
+ width: 1px;
+ height: 160px;
+ background: #1A4157;
+ }
+ }
}
diff --git a/components/peak-coal-monitoring/EnergyProfile.vue b/components/peak-coal-monitoring/EnergyProfile.vue
index fca4d0a..5652f40 100644
--- a/components/peak-coal-monitoring/EnergyProfile.vue
+++ b/components/peak-coal-monitoring/EnergyProfile.vue
@@ -1,6 +1,15 @@
-
+
+
+
+
+
{{ item.label }}
@@ -38,13 +47,31 @@ export default {
value: 2
}
],
+ tabDataList: [
+ {
+ name: '今日',
+ value: '0'
+ },
+ {
+ name: '本月',
+ value: '1'
+ },
+ {
+ name: '上月',
+ value: '2'
+ }
+ ],
+ activeDateTab:'0',
activeTab: 1
}
},
methods: {
tabChange(val) {
this.activeTab = val
- }
+ },
+ tabDateChange(val) {
+ this.activeDateTab = val
+ },
}
}
@@ -93,5 +120,35 @@ export default {
height: 100%;
}
}
+
+ .right-tab {
+ height: 100%;
+ .flex-row;
+ justify-content: space-between;
+ width: 220px;
+
+ .tab-type {
+ margin-bottom: 15px;
+ width: 67px;
+ height: 30px;
+ .bg("~/assets/peakCoalImages/left/pollutant-type-default-bg.png");
+ font-family: MicrosoftYaHei;
+ font-size: 14px;
+ color: rgba(216, 240, 255, 0.50);
+ letter-spacing: 0;
+ text-align: center;
+ line-height: 30px;
+ text-shadow: 0 0 11px #0091FF;
+ font-weight: 400;
+ cursor: pointer;
+ }
+
+ .active-tab {
+ .bg("~/assets/peakCoalImages/left/pollutant-type-active-bg.png");
+ color: #D8F0FF;
+ text-shadow: 0 0 33px #0091FF;
+ font-weight: 400;
+ }
+ }
}
diff --git a/components/peak-coal-monitoring/PeakAirQuality.vue b/components/peak-coal-monitoring/PeakAirQuality.vue
new file mode 100644
index 0000000..b6cf130
--- /dev/null
+++ b/components/peak-coal-monitoring/PeakAirQuality.vue
@@ -0,0 +1,132 @@
+
+
+
+
+
+
+
diff --git a/components/peak-coal-monitoring/PollutionInformation.vue b/components/peak-coal-monitoring/PollutionInformation.vue
index ccd0652..97026c4 100644
--- a/components/peak-coal-monitoring/PollutionInformation.vue
+++ b/components/peak-coal-monitoring/PollutionInformation.vue
@@ -1,17 +1,88 @@
-
+