+
+
欢迎登录安检设备综合管理平台
@@ -42,6 +49,7 @@ import { login } from '@/utils/SystemSettingApi'
export default {
data() {
return {
+ show: true,
loginForm: {
staffNumber: '',
password: ''
@@ -56,6 +64,11 @@ export default {
}
}
},
+ mounted() {
+ setTimeout(() => {
+ this.show = false
+ }, 4000)
+ },
methods: {
// 登录提交
async submitForm() {
@@ -86,13 +99,15 @@ export default {
height: 100vh;
background-color: skyblue;
display: flex;
- justify-content:center;
+ justify-content: center;
align-items: center;
}
+
.login-box {
width: 400px;
height: 350px;
}
+
.title {
font-size: 26px;
color: #000;
@@ -100,8 +115,65 @@ export default {
text-align: center;
font-weight: bold;
}
+
.el-input {
height: 47px;
width: 100%;
}
+
+#Loading {
+ top: 50%;
+ left: 50%;
+ position: absolute;
+ -webkit-transform: translateY(-50%) translateX(-50%);
+ transform: translateY(-50%) translateX(-50%);
+ z-index: 100;
+}
+
+@-webkit-keyframes ball-beat {
+ 50% {
+ opacity: 0.2;
+ -webkit-transform: scale(0.75);
+ transform: scale(0.75);
+ }
+
+ 100% {
+ opacity: 1;
+ -webkit-transform: scale(1);
+ transform: scale(1);
+ }
+}
+
+@keyframes ball-beat {
+ 50% {
+ opacity: 0.2;
+ -webkit-transform: scale(0.75);
+ transform: scale(0.75);
+ }
+
+ 100% {
+ opacity: 1;
+ -webkit-transform: scale(1);
+ transform: scale(1);
+ }
+}
+
+.ball-beat > div {
+ background-color: #279fcf;
+ width: 15px;
+ height: 15px;
+ border-radius: 100% !important;
+ margin: 2px;
+ -webkit-animation-fill-mode: both;
+ animation-fill-mode: both;
+ display: inline-block;
+ -webkit-animation: ball-beat 0.7s 0s infinite linear;
+ animation: ball-beat 0.7s 0s infinite linear;
+}
+
+.ball-beat > div:nth-child(2n-1) {
+ -webkit-animation-delay: 0.35s !important;
+ animation-delay: 0.35s !important;
+}
+