You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

77 lines
1.4 KiB

3 years ago
<template>
<card class="card-user" style="max-height:100%">
<div class="row" >
<div class="col-7 order-first " >
<br>
<myconnect-server>
</myconnect-server>
3 years ago
<hybrid-lab
v-if="ishybridlab"
>
</hybrid-lab>
3 years ago
</div>
<div class="col-5 order-last" >
<br>
3 years ago
<!--
3 years ago
<adhoc-view>
</adhoc-view>
3 years ago
-->
<zones-view>
</zones-view>
3 years ago
</div>
</div>
</card>
</template>
<script>
import {mapState, mapGetters, mapActions} from 'vuex'
//import ViewNetwork from "./mynetwork/mytable.vue";
3 years ago
//import AdhocView from "./mynetwork/AdhocView.vue";
import ZonesView from "./manageservices/manage-service.vue";
3 years ago
import card from '@/components/Card.vue'
3 years ago
import HybridLab from "./manageservices/hybridlab.vue";
3 years ago
import MyconnectServer from "./mynetwork/myconnect-server.vue";
export default {
components: {
3 years ago
HybridLab,
3 years ago
ZonesView,
3 years ago
card,
MyconnectServer
},
data () {
return {
loading: false,
3 years ago
ishybridlab: false,
3 years ago
consoleView: 'off',
productIndex: 1
}
},
mounted() {
3 years ago
this.$root.$on('hybrid_lab_keyview', (v) => {
if(v == 'open'){
this.ishybridlab=true
}else if(v == 'close'){
this.ishybridlab=false
}
})
3 years ago
},
beforeDestroy () {
3 years ago
this.$root.$off('hybrid_lab_keyview')
3 years ago
},
created () {
}
};
</script>
<style>
</style>