|
|
@@ -1,6 +1,6 @@
|
|
|
<template>
|
|
|
<div class='full-screen flex flex-center bg'>
|
|
|
- <div class='login white-bg radius'>
|
|
|
+ <div class='login white-bg radius' v-loading='loading'>
|
|
|
<div class='flex flex-center flex-child-average'>
|
|
|
<div class='flex left '>
|
|
|
<img
|
|
|
@@ -88,8 +88,7 @@
|
|
|
<el-button color='#558FF1' @click='download("https://wutong-1302848345.cos.ap-chengdu.myqcloud.com/wtzx/f1372710ca1f4245b1d2d54067b403c0.pdf")' style='width: 160px' plain class='mt-10 blockss'>
|
|
|
点击下载用户指南
|
|
|
</el-button>
|
|
|
- <span class='grey-6 mt-5 font-12 mt-20'>为了获得最佳体验,您可以<span class='blue pointer'
|
|
|
- @click='download("https://www.google.cn/intl/zh-CN/chrome/")'>点击此处</span>获取Chrome 浏览器</span>
|
|
|
+ <span class='grey-6 mt-5 font-12 mt-20'>为了获得最佳体验,您可以<span class='blue pointer' @click='download("https://www.google.cn/intl/zh-CN/chrome/")'>点击此处</span>获取Chrome 浏览器</span>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
@@ -163,7 +162,8 @@ export default {
|
|
|
qrCodeText: '',
|
|
|
sessionId: '',
|
|
|
logoSrc: new URL('../assets/img/logo.png', import.meta.url).href,
|
|
|
- dev: true
|
|
|
+ dev: true,
|
|
|
+ loading: false
|
|
|
}
|
|
|
},
|
|
|
created () {
|
|
|
@@ -196,7 +196,9 @@ export default {
|
|
|
type: 'account'
|
|
|
}
|
|
|
const header = { captchaKey: this.header, captchaCode: this.form.code }
|
|
|
+ this.loading = true
|
|
|
this.$api.login.login(params, header).then(res => {
|
|
|
+ this.loading = false
|
|
|
if (res.error_description) {
|
|
|
this.$message.error(res.error_description)
|
|
|
this.init()
|