You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
58 lines
1.1 KiB
58 lines
1.1 KiB
4 years ago
|
<template>
|
||
|
<div class="wrap">
|
||
|
<div class="nav">
|
||
|
<h6>商业银行系统</h6>
|
||
|
<navbar></navbar>
|
||
|
</div>
|
||
|
<div class="manage-layout">
|
||
|
<div class="manage-content">
|
||
|
<router-view class="manage-view"></router-view>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import navbar from '../navbar'
|
||
|
import { mapState } from 'vuex'
|
||
|
export default {
|
||
|
name: 'index',
|
||
|
data() {
|
||
|
return {
|
||
|
|
||
|
}
|
||
|
},
|
||
|
components: {
|
||
|
navbar,
|
||
|
},
|
||
|
mounted() {
|
||
|
|
||
|
},
|
||
|
methods: {
|
||
|
|
||
|
}
|
||
|
};
|
||
|
</script>
|
||
|
|
||
|
<style lang="scss" scoped>
|
||
|
.wrap{
|
||
|
display: flex;
|
||
|
min-width: 1300px;
|
||
|
min-height: 100%;
|
||
|
// overflow: hidden;
|
||
|
.nav{
|
||
|
width: 270px;
|
||
|
}
|
||
|
.manage-layout{
|
||
|
width: calc(100% - 270px);
|
||
|
.manage-content{
|
||
|
height: calc(100vh - 80px);
|
||
|
padding: 24px 24px 0;
|
||
|
overflow: auto;
|
||
|
.view{
|
||
|
min-height: calc(100% - 60px);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
</style>
|