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

44 lines
730 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">
<router-view />
</div>
2020-01-19 14:21:22 +08:00
<!-- <bottom /> -->
</div>
</template>
<script>
import TopNav from './nav.vue';
2020-01-19 14:21:22 +08:00
// import bottom from './bottom.vue';
2020-01-19 18:36:17 +08:00
// import ConfigContent from './config/index';
export default {
components: {
2020-01-19 18:36:17 +08:00
TopNav
2020-01-19 14:21:22 +08:00
// bottom,
2020-01-19 18:36:17 +08:00
// ConfigContent
},
data() {
return {
2020-01-17 17:48:08 +08:00
mode: 'standFAS'
};
2020-01-17 17:48:08 +08:00
},
methods: {
}
};
</script>
<style lang="scss" scoped>
.iscs-system-box{
position: relative;
height: 100%;
}
.content-box{
width: 100%;
height: 100%;
2020-01-19 14:21:22 +08:00
padding: 95px 0 0;
2020-01-17 17:48:08 +08:00
background: #45607B;
}
</style>