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

43 lines
682 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';
export default {
components: {
2020-01-19 18:36:17 +08:00
TopNav
2020-01-20 10:55:33 +08:00
// bottom
},
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{
2020-01-20 10:55:33 +08:00
// position: relative;
height: 100%;
2020-01-20 10:55:33 +08:00
overflow-y: auto;
}
.content-box{
width: 100%;
height: 100%;
2020-01-20 10:55:33 +08:00
padding: 34px 0 0;
2020-01-17 17:48:08 +08:00
background: #45607B;
}
</style>