diff --git a/src/App.vue b/src/App.vue
index db71ed9..6b78272 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -1,14 +1,18 @@
+
-
@@ -150,6 +211,7 @@ export default {
display: flex;
flex-direction: column;
overflow: hidden;
+ padding: 24px 0 24px 24px;
.nav{
/deep/ .el-menu.el-menu--horizontal{
border: 0;
@@ -172,10 +234,12 @@ export default {
display: flex;
align-items: center;
font-size: 20px;
- padding-left: 50px;
+ padding-left: 0px;
+ margin-top: 10px;
}
.body{
margin-top: 50px;
+ overflow: auto;
.idCard{
border-radius: 5px;
background: #CFDDFF;
@@ -185,12 +249,33 @@ export default {
font-size: 18px;
color: #6191FF;
}
+ .add{
+ position: relative;
+ &::after{
+ content: '';
+ display: block;
+ position: absolute;
+ right: 3%;
+ top: -4%;
+ border: 1px dashed #CFDDFF;
+ width: 88%;
+ height: 268px;
+ }
+ .addBtn{
+ position: absolute;
+ left: 0;
+ top: 50%;
+ transform: translate(50%,-50%);
+ font-size: 22px;
+ }
+ }
}
.submitBtn{
- position: absolute;
+ position: relative;
width: 300px;
font-size: 18px;
height: 68px;
+ margin-top: 50px;
border-radius: 10px;
bottom: 10px;
left: 50%;
diff --git a/src/store/modules/layout.js b/src/store/modules/layout.js
index 535ebc4..fff46db 100644
--- a/src/store/modules/layout.js
+++ b/src/store/modules/layout.js
@@ -11,12 +11,16 @@ function isIE() {
export default {
namespaced: true,
state: {
- isIE: isIE()
+ isIE: isIE(),
+ fullScreen:false,// 银行系统是否全屏
},
mutations: {
SET_IE: (state, val) => {
state.isIE = val
},
+ changeFullscreen:(state,val) => {
+ state.fullScreen = val
+ }
},
actions: {