From 700398ba1359e75c766e5116b4b1d0f962b5fdf9 Mon Sep 17 00:00:00 2001
From: panlinlin <648540858@qq.com>
Date: 星期二, 12 一月 2021 10:37:31 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/master' into wvp-28181-2.0
---
web_src/src/components/Login.vue | 10 +++-------
1 files changed, 3 insertions(+), 7 deletions(-)
diff --git a/web_src/src/components/Login.vue b/web_src/src/components/Login.vue
index 030d3ee..f047c5d 100644
--- a/web_src/src/components/Login.vue
+++ b/web_src/src/components/Login.vue
@@ -10,16 +10,14 @@
<div class="log-logo">Welcome!</div>
<div class="log-text"></div>
</div>
- <div class="log-email">
+ <div class="log-email" v-loading="isLoging" >
<input type="text" placeholder="鐢ㄦ埛鍚�" :class="'log-input' + (username==''?' log-input-empty':'')" v-model="username"><input type="password" placeholder="瀵嗙爜" :class="'log-input' + (password==''?' log-input-empty':'')" v-model="password">
<a href="javascript:;" class="log-btn" @click="login" >鐧诲綍</a>
</div>
- <Loading v-if="isLoging" marginTop="-30%"></Loading>
</div>
</template>
<script>
-import Loading from './Loading.vue'
import crypto from 'crypto'
export default {
name: 'Login',
@@ -29,9 +27,6 @@
username: '',
password: ''
}
- },
- components:{
- Loading
},
created(){
var that = this;
@@ -79,7 +74,8 @@
}
})
.catch(function (error) {
- console.log(error);
+ that.$message.error(error.response.statusText);
+ that.isLoging = false;
});
--
Gitblit v1.8.0