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

80 lines
1.8 KiB
Vue
Raw Normal View History

<template>
<div class="iscs-system-box">
2020-01-17 17:48:08 +08:00
<top-nav @selectMode="selectMode" />
2020-01-21 09:28:14 +08:00
<div class="content-box iscs_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;
}
2020-01-21 09:28:14 +08:00
// 谷歌、safari、qq浏览器、360浏览器滚动条样式
// 定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸
.iscs_content_box ::-webkit-scrollbar {
width: 6px;
height: 6px;
// height: 110px;
background-color: #FFFFFF;
}
/*定义滚动条轨道 内阴影+圆角*/
.iscs_content_box ::-webkit-scrollbar-track {
// box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
border-radius: 10px;
background-color: #FFFFFF;;
}
/*定义滑块 内阴影+圆角*/
.iscs_content_box ::-webkit-scrollbar-thumb {
border-radius: 10px;
// box-shadow: inset 0 0 6px rgba(0,0,0,.3);
background-color: #cacaca;
}
/*滑块效果*/
.iscs_content_box ::-webkit-scrollbar-thumb:hover {
border-radius: 5px;
// box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
background: rgba(0,0,0,0.4);
}
/*IE滚动条颜色*/
html {
scrollbar-face-color:#bfbfbf;/*滚动条颜色*/
scrollbar-highlight-color:#000;
scrollbar-3dlight-color:#000;
scrollbar-darkshadow-color:#000;
scrollbar-Shadow-color:#adadad;/*滑块边色*/
scrollbar-arrow-color:rgba(0,0,0,0.4);/*箭头颜色*/
scrollbar-track-color:#eeeeee;/*背景颜色*/
}
</style>