|
@@ -404,6 +404,13 @@ export default {
|
|
|
lottie,
|
|
|
},
|
|
|
mounted() {
|
|
|
+ document.addEventListener(
|
|
|
+ 'touchmove',
|
|
|
+ function (event) {
|
|
|
+ event.preventDefault();
|
|
|
+ },
|
|
|
+ { passive: false },
|
|
|
+ );
|
|
|
if (sessionStorage.getItem('isAgreementBool')) {
|
|
|
this.loginVisible = true;
|
|
|
this.laoginData.phone = sessionStorage.getItem('invitedPhone');
|
|
@@ -1437,12 +1444,12 @@ export default {
|
|
|
width: 284px;
|
|
|
z-index: -1;
|
|
|
}
|
|
|
- .exit-glory{
|
|
|
+ .exit-glory {
|
|
|
position: absolute;
|
|
|
top: 50%;
|
|
|
left: 50%;
|
|
|
transform: translate(-50%, -50%) scale(1.5);
|
|
|
- z-index: -2
|
|
|
+ z-index: -2;
|
|
|
}
|
|
|
.exit-content {
|
|
|
position: absolute;
|
|
@@ -1681,7 +1688,7 @@ export default {
|
|
|
margin-bottom: 24px !important;
|
|
|
}
|
|
|
|
|
|
-.mask{
|
|
|
+.mask {
|
|
|
z-index: 4000;
|
|
|
}
|
|
|
</style>
|