rt-sim-training-client/src/views/system/iscsSystem/index.vue
2020-01-19 14:21:22 +08:00

47 lines
808 B
Vue

<template>
<div class="iscs-system-box">
<top-nav @selectMode="selectMode" />
<div class="content-box">
<config-content :mode="mode" />
</div>
<!-- <bottom /> -->
</div>
</template>
<script>
import TopNav from './nav.vue';
// import bottom from './bottom.vue';
import ConfigContent from './config/index';
export default {
components: {
TopNav,
// bottom,
ConfigContent
},
data() {
return {
mode: 'standFAS'
};
},
methods: {
selectMode(type) {
this.mode = type;
}
}
};
</script>
<style lang="scss" scoped>
.iscs-system-box{
position: relative;
height: 100%;
}
.content-box{
width: 100%;
height: 100%;
padding: 95px 0 0;
background: #45607B;
}
</style>