40 lines
576 B
Vue
40 lines
576 B
Vue
|
<template>
|
||
|
<div class="iscs-system-box">
|
||
|
<top-nav />
|
||
|
<div class="content-box">
|
||
|
1111
|
||
|
</div>
|
||
|
<bottom />
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import TopNav from './nav.vue';
|
||
|
import bottom from './bottom.vue';
|
||
|
|
||
|
export default {
|
||
|
components: {
|
||
|
TopNav,
|
||
|
bottom
|
||
|
},
|
||
|
data() {
|
||
|
return {
|
||
|
mes: '1111'
|
||
|
};
|
||
|
}
|
||
|
};
|
||
|
</script>
|
||
|
|
||
|
<style lang="scss" scoped>
|
||
|
.iscs-system-box{
|
||
|
position: relative;
|
||
|
height: 100%;
|
||
|
}
|
||
|
.content-box{
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
padding: 95px 0;
|
||
|
background: green;
|
||
|
}
|
||
|
</style>
|