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.
335 lines
8.2 KiB
335 lines
8.2 KiB
<template> |
|
<!-- :style="full?'height:100vh;':'height: 80vh;'" --> |
|
<div class="box" |
|
:class="full || isCredit? 'h-4/5': ''"> |
|
<div class="nav"> |
|
<!-- <div class="top" :style="full?'border-radius:0':'border-top-left-radius: 20px;'"> select-none --> |
|
<div class="top" |
|
:style="full?'border-radius:0':'border-top-left-radius: 20px;'"> |
|
<p style="margin:auto">商业银行系统</p> |
|
</div> |
|
<!-- <div class="body2"> |
|
<navbar class="body"></navbar> |
|
</div> --> |
|
<div class="body"> |
|
<navbar /> |
|
</div> |
|
<!-- <navbar class="body"></navbar> --> |
|
</div> |
|
<div class="manage-layout"> |
|
<div class="top" |
|
:style="full?'border-radius:0':'border-top-right-radius: 20px;'"> |
|
<img v-show="!full && !isCredit" |
|
src="../../../assets/svg/fullscreen.svg" |
|
alt="" |
|
@click="handleFullscreen"> |
|
<img v-show="full" |
|
src="../../../assets/svg/shrink.svg" |
|
alt="" |
|
@click="shrink"> |
|
<i @click="close" |
|
class="el-icon-close"></i> |
|
</div> |
|
<div class="manage-content"> |
|
<transition name="fade"> |
|
<router-view class="manage-view"></router-view> |
|
</transition> |
|
</div> |
|
</div> |
|
</div> |
|
</template> |
|
|
|
<script> |
|
import navbar from '../navbar' |
|
|
|
export default { |
|
name: 'index', |
|
data () { |
|
return { |
|
fullscreen: this.$store.state.system.fullScreen,// 是否全屏--store读取 |
|
isCredit: state => state.system.isCredit |
|
} |
|
}, |
|
components: { |
|
navbar |
|
}, |
|
// beforeMount() { |
|
// const path = sessionStorage.getItem('computerPath') |
|
// console.log('router-view') |
|
// console.log(path) |
|
// this.$router.push(path) |
|
// }, |
|
methods: { |
|
close () { |
|
// 缓存上一次退出时的系统录入的路径 下一次进来时跳到上一次退出时的页面 用于刷卡 |
|
sessionStorage.setItem('computerPath', this.$route.fullPath) |
|
this.$router.push('/counter/list/') |
|
}, |
|
handleFullscreen () { |
|
this.fullscreen = true |
|
this.$store.commit('system/changeFullscreen', true) |
|
}, |
|
shrink () { |
|
this.fullscreen = false |
|
this.$store.commit('system/changeFullscreen', false) |
|
}, |
|
|
|
}, |
|
computed: { |
|
full: function () { |
|
return this.$store.state.system.fullScreen |
|
} |
|
} |
|
}; |
|
</script> |
|
|
|
<style lang="scss" scoped> |
|
$font_size_All: 16px; // 字体大小 |
|
$submenu_padding_left: 25px; // 相应的padding-left大小 |
|
|
|
// /deep/.el-form-item { |
|
// label { |
|
// width: 100px!important; |
|
// text-align-last: justify; |
|
// } |
|
|
|
// } |
|
|
|
@media screen and (min-width: 1920px) { |
|
/deep/.body { |
|
min-height: 50vh; |
|
} |
|
} |
|
|
|
@media screen and (min-width: 1200px) and (max-width: 1700px) { |
|
/deep/.body { |
|
min-height: 50vh; |
|
} |
|
} |
|
|
|
// .wrap2{ |
|
// width: 100%; |
|
// display: flex; |
|
// flex-direction: column; |
|
// overflow: hidden; |
|
// .title{ |
|
// height: 60px; |
|
// display: flex; |
|
// align-items: center; |
|
// font-size: 20px; |
|
// padding-left: 50px; |
|
// } |
|
// .body{ |
|
// margin-top: 50px; |
|
// } |
|
// } |
|
|
|
.box { |
|
display: flex; |
|
min-width: 1300px; |
|
.nav { |
|
width: 270px; |
|
min-height: 80vh; |
|
border-top-left-radius: 20px; |
|
border-bottom-left-radius: 20px; |
|
display: flex; |
|
flex-direction: column; |
|
.top { |
|
height: 50px; |
|
font-size: 20px; |
|
display: flex; |
|
align-items: center; |
|
text-align: center; |
|
border-top-left-radius: 15px; |
|
color: #b3b3b3; |
|
background: #222428; |
|
p { |
|
font-size: 21px; |
|
} |
|
} |
|
.body { |
|
flex: 1; |
|
.el-menu { |
|
height: 100%; |
|
} |
|
} |
|
} |
|
.manage-layout { |
|
width: calc(100% - 270px); |
|
// background: #fff; |
|
background: transparent; |
|
display: flex; |
|
flex-direction: column; |
|
.top { |
|
height: 50px; |
|
font-size: 30px; |
|
display: flex; |
|
justify-content: flex-end; |
|
align-items: center; |
|
text-align: center; |
|
color: #000; |
|
background: #e6e6e6; |
|
border-top-right-radius: 20px; |
|
i { |
|
margin-right: 10px; |
|
cursor: pointer; |
|
} |
|
} |
|
.manage-content { |
|
flex: 1; |
|
position: relative; |
|
border-bottom-right-radius: 20px; |
|
overflow: hidden; |
|
.manage-view { |
|
position: absolute; |
|
top: 0; |
|
bottom: 0; |
|
background: #fff; |
|
} |
|
} |
|
} |
|
} |
|
.fade-enter-active, |
|
.fade-leave-active { |
|
transition: opacity 0.5s; |
|
} |
|
.fade-enter, .fade-leave-to /* .fade-leave-active below version 2.1.8 */ { |
|
opacity: 0.5; |
|
} |
|
// el-input变红 |
|
/deep/ .el-input input { |
|
&:focus { |
|
border-color: skyblue; |
|
} |
|
} |
|
|
|
// 校验错误变红 |
|
/deep/ .is-error input { |
|
border-color: #f40 !important; |
|
} |
|
|
|
/deep/.el-input { |
|
// width: 15vw!important; |
|
width: 100%; |
|
input { |
|
font-size: $font_size_All !important; |
|
} |
|
} |
|
|
|
/deep/ .text-xl p { |
|
font-size: $font_size_All !important; |
|
} |
|
/deep/ .el-form-item .el-form-item__label { |
|
font-size: $font_size_All !important; |
|
} |
|
|
|
/deep/ .el-submenu { |
|
padding-left: $submenu_padding_left !important; |
|
} |
|
/deep/ .el-submenu .el-menu-item { |
|
padding-left: $submenu_padding_left + 25px !important; |
|
font-size: $font_size_All !important; |
|
} |
|
// /deep/ .el-menu-item { |
|
// padding-left: $submenu_padding_left + 25px!important; |
|
// font-size: $font_size_All!important; |
|
// } |
|
/deep/ .el-menu span { |
|
font-size: $font_size_All !important; |
|
} |
|
|
|
/deep/ .title p { |
|
font-size: $font_size_All !important; |
|
} |
|
/deep/ .idCard p { |
|
font-size: $font_size_All !important; |
|
} |
|
// /deep/ .el-form-item__error { |
|
// top: 105%; |
|
// left: auto; |
|
// right: 0; |
|
// color: #FFA94E; |
|
// } |
|
@media screen and (min-width: 1200px) and (max-width: 1700px) { |
|
/deep/.el-input { |
|
// width: 15vw!important; |
|
width: 100%; |
|
input { |
|
font-size: $font_size_All !important; |
|
} |
|
} |
|
/deep/ .idCard { |
|
// width: 15vw; |
|
width: 100%; |
|
} |
|
} |
|
@media screen and (min-width: 1200px) and (max-width: 1900px) { |
|
.box { |
|
display: flex; |
|
min-width: 80vw; |
|
// margin-top: 6vh; |
|
overflow: auto; |
|
// height: 70vh; |
|
.nav { |
|
width: 25vw; |
|
min-height: 80vh; |
|
overflow: hidden; |
|
border-top-left-radius: 20px; |
|
display: flex; |
|
flex-direction: column; |
|
.top { |
|
min-height: 10vh; |
|
font-size: 3vh; |
|
line-height: 3vh; |
|
display: flex; |
|
align-items: center; |
|
text-align: center; |
|
border-top-left-radius: 15px; |
|
color: #b3b3b3; |
|
background: #222428; |
|
} |
|
.body { |
|
// flex: 1; |
|
// height: calc(80vh-10vh); |
|
overflow: auto; |
|
background-color: #313540; |
|
} |
|
} |
|
.manage-layout { |
|
width: calc(100% - 270px); |
|
min-height: 80vh; |
|
overflow: auto; |
|
// background: #fff; |
|
background: transparent; |
|
display: flex; |
|
flex-direction: column; |
|
box-sizing: border-box; |
|
.top { |
|
min-height: 10vh; |
|
font-size: 30px; |
|
display: flex; |
|
justify-content: flex-end; |
|
align-items: center; |
|
text-align: center; |
|
color: #000; |
|
background: #e6e6e6; |
|
border-top-right-radius: 20px; |
|
i { |
|
margin-right: 10px; |
|
cursor: pointer; |
|
} |
|
} |
|
.manage-content { |
|
flex: 1; |
|
position: relative; |
|
.manage-view { |
|
position: absolute; |
|
top: 0; |
|
bottom: 0; |
|
background: #fff; |
|
} |
|
} |
|
} |
|
} |
|
} |
|
</style> |