2020-01-17 15:31:58 +08:00
|
|
|
<template>
|
|
|
|
<div class="iscs-system-box">
|
2020-01-17 17:48:08 +08:00
|
|
|
<top-nav @selectMode="selectMode" />
|
2020-01-17 15:31:58 +08:00
|
|
|
<div class="content-box">
|
2020-01-17 17:48:08 +08:00
|
|
|
<config-content :mode="mode" />
|
2020-01-17 15:31:58 +08:00
|
|
|
</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';
|
2020-01-17 15:31:58 +08:00
|
|
|
|
|
|
|
export default {
|
|
|
|
components: {
|
|
|
|
TopNav,
|
2020-01-17 17:48:08 +08:00
|
|
|
bottom,
|
|
|
|
ConfigContent
|
2020-01-17 15:31:58 +08:00
|
|
|
},
|
|
|
|
data() {
|
|
|
|
return {
|
2020-01-17 17:48:08 +08:00
|
|
|
mode: 'standFAS'
|
2020-01-17 15:31:58 +08:00
|
|
|
};
|
2020-01-17 17:48:08 +08:00
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
selectMode(type) {
|
|
|
|
this.mode = type;
|
|
|
|
}
|
2020-01-17 15:31:58 +08:00
|
|
|
}
|
|
|
|
};
|
|
|
|
</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;
|
2020-01-17 15:31:58 +08:00
|
|
|
}
|
|
|
|
</style>
|