|
@@ -67,17 +67,17 @@
|
|
|
</div>
|
|
|
<div id="svg" :style="pageHeight" v-if="item.id !== 'all' && item.id === activeTab" v-html="svgMsg"
|
|
|
v-loading="loading"></div>
|
|
|
- <!-- <Mhs ref="svgRef" v-if="item.id === 'MHS_BT'" />
|
|
|
+ <Mhs ref="svgRef" v-if="item.id === 'MHS_BT'" />
|
|
|
<Nss ref="svgRef" v-if="item.id === 'NSS_FDC'" />
|
|
|
<Qs ref="svgRef" v-if="item.id === 'QS_FDC'" />
|
|
|
<Sbq ref="svgRef" v-if="item.id === 'SBQ_FDC'" />
|
|
|
- <Xs ref="svgRef" v-if="item.id === 'XS_FDC'" /> -->
|
|
|
- <!-- <Pl1 ref="svgRef" v-if="item.id === 'PL1_GDC'" />
|
|
|
+ <Xs ref="svgRef" v-if="item.id === 'XS_FDC'" />
|
|
|
+ <Pl1 ref="svgRef" v-if="item.id === 'PL1_GDC'" />
|
|
|
<Pl2 ref="svgRef" v-if="item.id === 'PL2_GDC'" />
|
|
|
<Dwk ref="svgRef" v-if="item.id === 'DWK_GDC'" />
|
|
|
<Mch ref="svgRef" v-if="item.id === 'MCH_GDC'" />
|
|
|
<Xh ref="svgRef" v-if="item.id === 'XH_GDC'" />
|
|
|
- <Sbdl ref="svgRef" v-if="item.id === 'QS3_FDC'" /> -->
|
|
|
+ <Sbdl ref="svgRef" v-if="item.id === 'QS3_FDC'" />
|
|
|
<div class="alarmIconBox" v-if="item.id !== 'all'" @click="switchAlarmSound(index)">
|
|
|
<el-tooltip
|
|
|
v-if="item.isMute"
|
|
@@ -102,7 +102,19 @@
|
|
|
</div>
|
|
|
</el-dialog>
|
|
|
</template>
|
|
|
+
|
|
|
<script>
|
|
|
+import Mhs from "@/components/BoosterStation/mhs.vue";
|
|
|
+import Nss from "@/components/BoosterStation/nss.vue";
|
|
|
+import Qs from "@/components/BoosterStation/qs.vue";
|
|
|
+import Sbq from "@/components/BoosterStation/sbq.vue";
|
|
|
+import Xs from "@/components/BoosterStation/xs.vue";
|
|
|
+import Dwk from "@/components/BoosterStation/dwk.vue";
|
|
|
+import Sbdl from "@/components/BoosterStation/sbdl.vue";
|
|
|
+import Pl1 from "@/components/BoosterStation/pl1.vue";
|
|
|
+import Pl2 from "@/components/BoosterStation/pl2.vue";
|
|
|
+import Mch from "@/components/BoosterStation/mch.vue";
|
|
|
+import Xh from "@/components/BoosterStation/xh.vue";
|
|
|
|
|
|
import api from "@api/stateMonitor/index.js";
|
|
|
import CurrentWarningCard from "./currentWarningCard.vue";
|
|
@@ -115,6 +127,17 @@ export default {
|
|
|
},
|
|
|
},
|
|
|
components: {
|
|
|
+ Mhs,
|
|
|
+ Nss,
|
|
|
+ Qs,
|
|
|
+ Sbq,
|
|
|
+ Xs,
|
|
|
+ Dwk,
|
|
|
+ Sbdl,
|
|
|
+ Pl1,
|
|
|
+ Pl2,
|
|
|
+ Mch,
|
|
|
+ Xh,
|
|
|
CurrentWarningCard
|
|
|
},
|
|
|
data() {
|