a28c8a50 by liangyifan

弹窗

1 parent 595beed7
......@@ -58,9 +58,9 @@ export default {
setTimeout(() => {
if(this.btnShow){ //判断按钮的显影来决定是否需要计算高度
if(this.height == 'auto'){
this.contentHeight = (this.$refs.contentRef.offsetHeight - 115) + 'px'
this.contentHeight = (this.$refs.contentRef.offsetHeight - 100) + 'px'
}else{
this.contentHeight =(parseInt(this.height)-parseInt('115px'))+'px';
this.contentHeight =(parseInt(this.height)-parseInt('100px'))+'px';
}
}else{
if(this.height == 'auto'){
......@@ -132,7 +132,7 @@ export default {
.ls-title {
padding: 16px;
color: #ffffff;
background: linear-gradient(-2deg,#409EFF, transparent)
background: linear-gradient(3deg,#409EFF, transparent)
}
.ls-title .svg-icon {
......@@ -146,7 +146,7 @@ export default {
}
.ls-mask-footer {
height: 65px;
height: 50px;
display: flex;
justify-content: center;
width: 100%;
......@@ -172,7 +172,7 @@ export default {
}
/deep/.el-button {
margin: 15px 10px;
margin: 8px 10px;
width: 75px;
}
</style>
......