rt-sim-training-client/src/views/system/iscsSystem/index.vue

47 lines
791 B
Vue
Raw Normal View History

<template>
<div class="iscs-system-box">
2020-01-17 17:48:08 +08:00
<top-nav @selectMode="selectMode" />
<div class="content-box">
2020-01-17 17:48:08 +08:00
<config-content :mode="mode" />
</div>
<bottom />
</div>
</template>
<script>
import TopNav from './nav.vue';
import bottom from './bottom.vue';
2020-01-17 17:48:08 +08:00
import ConfigContent from './config/index';
export default {
components: {
TopNav,
2020-01-17 17:48:08 +08:00
bottom,
ConfigContent
},
data() {
return {
2020-01-17 17:48:08 +08:00
mode: 'standFAS'
};
2020-01-17 17:48:08 +08:00
},
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;
2020-01-17 17:48:08 +08:00
background: #45607B;
}
</style>