|
@@ -8,15 +8,52 @@
|
|
|
@select="select"
|
|
|
></BtnGroup2>
|
|
|
</div>
|
|
|
- <!-- <bsx6 class="booster-station-body"></bsx6> -->
|
|
|
- <BoosterMCH class="booster-station-body"></BoosterMCH>
|
|
|
+ <!-- 麻黄山 -->
|
|
|
+ <MHS class="booster-station-body" v-if="wpId === 'MHS_FDC'" />
|
|
|
+
|
|
|
+ <!-- 牛首山 -->
|
|
|
+ <NSS class="booster-station-body" v-if="wpId === 'NSS_FDC'" />
|
|
|
+
|
|
|
+ <!-- 青山 -->
|
|
|
+ <QS class="booster-station-body" v-if="wpId === 'QS_FDC'" />
|
|
|
+
|
|
|
+ <!-- 石板泉 -->
|
|
|
+ <SBQ class="booster-station-body" v-if="wpId === 'SBQ_FDC'" />
|
|
|
+
|
|
|
+ <!-- 香山 -->
|
|
|
+ <XS class="booster-station-body" v-if="wpId === 'XS_FDC'" />
|
|
|
+
|
|
|
+ <!-- 大武口 -->
|
|
|
+ <DWK class="booster-station-body" v-if="wpId === 'DWK_GDC'" />
|
|
|
+
|
|
|
+ <!-- 平罗一期 -->
|
|
|
+ <PL1 class="booster-station-body" v-if="wpId === 'PL_GDC'" />
|
|
|
+
|
|
|
+ <!-- 平罗二期 -->
|
|
|
+ <PL2 class="booster-station-body" v-if="wpId === 'PL_GDC'" />
|
|
|
+
|
|
|
+ <!-- 宣和 -->
|
|
|
+ <XH class="booster-station-body" v-if="wpId === 'XH_GDC'" />
|
|
|
+
|
|
|
+ <!-- 马场湖 -->
|
|
|
+ <MCH class="booster-station-body" v-if="wpId === 'MCH_GDC'" />
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
import BtnGroup2 from "@com/coms/btn/btn-group-double.vue";
|
|
|
// import bsx6 from "../components/bsx6.vue";
|
|
|
-import BoosterMCH from "../components/boosterstation/mch.vue";
|
|
|
+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 SBDL from "../components/boosterstation/sbdl.vue";
|
|
|
+import XS from "../components/boosterstation/xs.vue";
|
|
|
+import DWK from "../components/boosterstation/dwk.vue";
|
|
|
+import PL1 from "../components/boosterstation/pl1.vue";
|
|
|
+import PL2 from "../components/boosterstation/pl2.vue";
|
|
|
+import XH from "../components/boosterstation/pl2.vue";
|
|
|
+import MCH from "../components/boosterstation/mch.vue";
|
|
|
|
|
|
export default {
|
|
|
// 名称
|
|
@@ -25,7 +62,17 @@ export default {
|
|
|
components: {
|
|
|
// bsx6,
|
|
|
BtnGroup2,
|
|
|
- BoosterMCH,
|
|
|
+ MHS,
|
|
|
+ NSS,
|
|
|
+ QS,
|
|
|
+ SBQ,
|
|
|
+ // SBDL,
|
|
|
+ XS,
|
|
|
+ DWK,
|
|
|
+ PL1,
|
|
|
+ PL2,
|
|
|
+ XH,
|
|
|
+ MCH,
|
|
|
},
|
|
|
// 数据
|
|
|
data() {
|
|
@@ -55,9 +102,10 @@ export default {
|
|
|
// 函数
|
|
|
methods: {
|
|
|
select(res) {
|
|
|
+ console.log(2333, res.code);
|
|
|
this.$router.replace({
|
|
|
- path: `/monitor/windsite/boosterstation/${res.code}`,
|
|
|
- });
|
|
|
+ path: `/monitor/windsite/boosterstation/${res.code}`,
|
|
|
+ });
|
|
|
},
|
|
|
getWp() {
|
|
|
let that = this;
|
|
@@ -147,6 +195,7 @@ export default {
|
|
|
|
|
|
.booster-station-body {
|
|
|
flex-grow: 1;
|
|
|
+ margin-top: 20px;
|
|
|
}
|
|
|
}
|
|
|
</style>
|