|
|
|
@ -4,20 +4,16 @@ |
|
|
|
|
<div class="form"> |
|
|
|
|
<h6 class="title">欢迎使用请登录</h6> |
|
|
|
|
<ul class="tab"> |
|
|
|
|
<li v-for="(item,index) in tabList" :key="index" :class="{active: form.distinguish == item.id}" @click="typeClick(item)">{{item.label}}</li> |
|
|
|
|
<li v-for="(item, index) in tabList" :key="index" :class="{ active: form.distinguish == item.id }" |
|
|
|
|
@click="typeClick(item)">{{ item.label }}</li> |
|
|
|
|
</ul> |
|
|
|
|
<el-form :model="form" :rules="rules" ref="form" style="margin-top: 20px"> |
|
|
|
|
<!-- 学号工号 --> |
|
|
|
|
<div v-show="!form.distinguish"> |
|
|
|
|
<el-form-item class="school-select" prop="schoolId"> |
|
|
|
|
<label class="label school"></label> |
|
|
|
|
<el-select v-model="form.schoolId" clearable filterable placeholder="请选择学校"> |
|
|
|
|
<el-option v-for="(item, i) in schoolList" :key="i" :label="item.schoolName" :value="item.schoolId"></el-option> |
|
|
|
|
</el-select> |
|
|
|
|
</el-form-item> |
|
|
|
|
<div v-show="!form.distinguish && !verCodeLogin" class="items"> |
|
|
|
|
<el-form-item class="flex-1" prop="workNumber"> |
|
|
|
|
<label class="label account"></label> |
|
|
|
|
<el-input v-model.trim="form.workNumber" :placeholder="'请输入学号/工号'" @keyup.enter.native="submit"></el-input> |
|
|
|
|
<el-input v-model.trim="form.workNumber" placeholder="请输入学号/工号/手机号/邮箱" |
|
|
|
|
@keyup.enter.native="submit"></el-input> |
|
|
|
|
</el-form-item> |
|
|
|
|
</div> |
|
|
|
|
<!-- 手机号登录 --> |
|
|
|
@ -25,7 +21,7 @@ |
|
|
|
|
<label class="label account"></label> |
|
|
|
|
<el-input v-model.trim="form.account" placeholder="请输入账号" @keyup.enter.native="submit"></el-input> |
|
|
|
|
</el-form-item> |
|
|
|
|
<template v-if="form.distinguish === 2"> |
|
|
|
|
<template v-if="verCodeLogin"> |
|
|
|
|
<el-form-item prop="account"> |
|
|
|
|
<label class="label account"></label> |
|
|
|
|
<el-input v-model.trim="form.account" placeholder="请输入手机号/邮箱" @keyup.enter.native="submit"></el-input> |
|
|
|
@ -33,36 +29,30 @@ |
|
|
|
|
<el-form-item prop="code"> |
|
|
|
|
<label class="label code"></label> |
|
|
|
|
<div class="ver-code"> |
|
|
|
|
<el-input v-model="form.code" placeholder="请输入验证码" maxlength="6" @keyup.enter.native="submit"></el-input> |
|
|
|
|
<el-button type="text" @click="sendPhoneCodeLogin" :disabled="phoneDisabledLogin">{{ phoneBtnTextLogin }} |
|
|
|
|
<el-input v-model="form.code" placeholder="请输入验证码" maxlength="6" |
|
|
|
|
@keyup.enter.native="submit"></el-input> |
|
|
|
|
<el-button type="text" @click="sendPhoneCodeLogin" :disabled="phoneDisabledLogin">{{ phoneBtnTextLogin |
|
|
|
|
}} |
|
|
|
|
</el-button> |
|
|
|
|
</div> |
|
|
|
|
</el-form-item> |
|
|
|
|
</template> |
|
|
|
|
<template v-if="form.distinguish !== 2"> |
|
|
|
|
<template v-else> |
|
|
|
|
<el-form-item prop="password"> |
|
|
|
|
<label class="password label"></label> |
|
|
|
|
<el-input |
|
|
|
|
type="password" |
|
|
|
|
placeholder="请输入密码" |
|
|
|
|
v-model.trim="form.password" |
|
|
|
|
@keyup.enter.native="submit" |
|
|
|
|
> |
|
|
|
|
<el-input type="password" placeholder="请输入密码" v-model.trim="form.password" @keyup.enter.native="submit"> |
|
|
|
|
</el-input> |
|
|
|
|
</el-form-item> |
|
|
|
|
<el-form-item prop="code"> |
|
|
|
|
<label class="label code"></label> |
|
|
|
|
<el-input |
|
|
|
|
placeholder="请输入验证码" |
|
|
|
|
v-model.trim="form.code" |
|
|
|
|
@keyup.enter.native="submit" |
|
|
|
|
> |
|
|
|
|
<el-input placeholder="请输入验证码" v-model.trim="form.code" @keyup.enter.native="submit"> |
|
|
|
|
</el-input> |
|
|
|
|
<img @click="getVerImg" :src="verificationIMG" class="ver-img" alt=""> |
|
|
|
|
</el-form-item> |
|
|
|
|
</template> |
|
|
|
|
<div v-show="!form.distinguish" class="default-check"> |
|
|
|
|
<el-checkbox v-model="setDefault">设置为默认学校</el-checkbox> |
|
|
|
|
<div class="bottom"> |
|
|
|
|
<el-link :underline="false" type="primary" @click="switchType">{{ verCodeLogin ? '密码' : '验证码' }}登录</el-link> |
|
|
|
|
<el-link :underline="false" type="primary" @click="toAccount">没有账号,点击申请</el-link> |
|
|
|
|
</div> |
|
|
|
|
<el-button class="submit" type="primary" @click="submit">登录</el-button> |
|
|
|
|
</el-form> |
|
|
|
@ -78,7 +68,9 @@ |
|
|
|
|
<el-form-item label="验证码"> |
|
|
|
|
<div class="ver-code"> |
|
|
|
|
<el-input v-model="phoneCode" placeholder="请输入验证码" maxlength="6"></el-input> |
|
|
|
|
<el-button style="top: 1px" type="text" @click="sendPhoneCode(1)" :disabled="binding === '' || phoneDisabled">{{phoneBtnText}}</el-button> |
|
|
|
|
<el-button style="top: 1px" type="text" @click="sendPhoneCode(1)" |
|
|
|
|
:disabled="binding === '' || phoneDisabled">{{ |
|
|
|
|
phoneBtnText }}</el-button> |
|
|
|
|
</div> |
|
|
|
|
</el-form-item> |
|
|
|
|
</el-form> |
|
|
|
@ -87,16 +79,18 @@ |
|
|
|
|
<el-button size="small" type="primary" @click="phoneSubmit">确 定</el-button> |
|
|
|
|
</span> |
|
|
|
|
</el-dialog> |
|
|
|
|
<el-dialog title="请选择您要登录的用户" :visible.sync="userVisible" :close-on-click-modal="false" custom-class="user-dia" width="500px"> |
|
|
|
|
<el-dialog title="请选择您要登录的用户" :visible.sync="userVisible" :close-on-click-modal="false" custom-class="user-dia" |
|
|
|
|
width="500px"> |
|
|
|
|
<p class="tips">该手机号已绑定以下用户信息</p> |
|
|
|
|
<ul class="users"> |
|
|
|
|
<li :class="{isEnable: !user.isEnable}" v-for="(user, i) in users" :key="i" @click="chooseUser(user)"> |
|
|
|
|
<span>{{ user.schoolName }},{{ user.userName }},{{ user.workNumber }}{{ user.isEnable ? '' : '(已禁用)'}}</span> |
|
|
|
|
<li :class="{ isEnable: !user.isEnable }" v-for="(user, i) in users" :key="i" @click="chooseUser(user)"> |
|
|
|
|
<span>{{ user.schoolName }},{{ user.userName }},{{ user.workNumber }}{{ user.isEnable ? '' : '(已禁用)' }}</span> |
|
|
|
|
<i class="el-icon-right"></i> |
|
|
|
|
</li> |
|
|
|
|
</ul> |
|
|
|
|
</el-dialog> |
|
|
|
|
<el-dialog :visible.sync="infoVisible" :close-on-click-modal="false" :show-close="false" custom-class="info-dia" width="400px"> |
|
|
|
|
<el-dialog :visible.sync="infoVisible" :close-on-click-modal="false" :show-close="false" custom-class="info-dia" |
|
|
|
|
width="400px"> |
|
|
|
|
<div class="info-header"> |
|
|
|
|
<i class="el-icon-warning"></i> |
|
|
|
|
提示 |
|
|
|
@ -131,41 +125,35 @@ import util from '@/libs/util' |
|
|
|
|
import Setting from '@/setting' |
|
|
|
|
import vFooter from '@/layouts/footer' |
|
|
|
|
export default { |
|
|
|
|
data: function() { |
|
|
|
|
data: function () { |
|
|
|
|
return { |
|
|
|
|
tabList: [ |
|
|
|
|
{ |
|
|
|
|
id: 0, |
|
|
|
|
label: '学号/工号登录' |
|
|
|
|
label: '学生/老师登录' |
|
|
|
|
}, { |
|
|
|
|
id: 1, |
|
|
|
|
label: '学校管理员登录' |
|
|
|
|
}, { |
|
|
|
|
id: 2, |
|
|
|
|
label: '手机号/邮箱' |
|
|
|
|
} |
|
|
|
|
], |
|
|
|
|
setDefault: !!util.local.get(schoolIdKey), // 本地缓存里有学校id,则默认勾选 |
|
|
|
|
verificationIMG: '', |
|
|
|
|
schoolList: [], |
|
|
|
|
form: { |
|
|
|
|
schoolId: '', |
|
|
|
|
workNumber: '', |
|
|
|
|
account: '', |
|
|
|
|
account: '', // 手机号验证码模式用这个字段 |
|
|
|
|
password: '', |
|
|
|
|
code: '', // 验证码 |
|
|
|
|
random: '', // 随机数 |
|
|
|
|
distinguish: 0, // 区分手机号账号登录,1为账号登录,2为手机号或邮箱登录 |
|
|
|
|
type: 2, // 平台端区分:0->教师端 1->学生端 2->无端 |
|
|
|
|
platform: Setting.platformId |
|
|
|
|
platform: Setting.platformId, |
|
|
|
|
distinguish: 0, |
|
|
|
|
}, |
|
|
|
|
rules: { |
|
|
|
|
schoolId: [{ required: true, message: "请选择学校", trigger: "change" }], |
|
|
|
|
workNumber: [{ required: true, message: "请输入学生学号", trigger: "blur" }], |
|
|
|
|
workNumber: [{ required: true, message: "请输入学号/工号/手机号/邮箱", trigger: "blur" }], |
|
|
|
|
account: [{ required: false, message: "请输入账号", trigger: "blur" }], |
|
|
|
|
password: [{ required: true, message: "请输入密码", trigger: "blur" }], |
|
|
|
|
code: [{ required: true, message: "请输入验证码", trigger: "blur" }] |
|
|
|
|
}, |
|
|
|
|
verCodeLogin: false, |
|
|
|
|
phoneDisabledLogin: false, |
|
|
|
|
phoneTimerLogin: null, |
|
|
|
|
phoneBtnTextLogin: '发送验证码', |
|
|
|
@ -186,9 +174,8 @@ export default { |
|
|
|
|
infos: [] |
|
|
|
|
}; |
|
|
|
|
}, |
|
|
|
|
components: {vHead,vFooter}, |
|
|
|
|
mounted(){ |
|
|
|
|
this.getSchool() |
|
|
|
|
components: { vHead, vFooter }, |
|
|
|
|
mounted () { |
|
|
|
|
this.getVerImg() |
|
|
|
|
}, |
|
|
|
|
methods: { |
|
|
|
@ -198,24 +185,20 @@ export default { |
|
|
|
|
...mapActions('user', [ |
|
|
|
|
'login', 'setCustomer' |
|
|
|
|
]), |
|
|
|
|
// 赋值学校列表及id |
|
|
|
|
setSchool(list) { |
|
|
|
|
this.schoolList = list |
|
|
|
|
// 取本地缓存里的学校id |
|
|
|
|
const schoolId = util.local.get(schoolIdKey) |
|
|
|
|
if (schoolId) this.form.schoolId = schoolId |
|
|
|
|
}, |
|
|
|
|
// 获取学校列表 |
|
|
|
|
getSchool() { |
|
|
|
|
this.$get(this.api.querySchool, { |
|
|
|
|
provinceId: '', |
|
|
|
|
cityId: '' |
|
|
|
|
}).then(({ list }) => { |
|
|
|
|
this.setSchool(list) |
|
|
|
|
}).catch(res => {}) |
|
|
|
|
// 重置验证规则 |
|
|
|
|
handleRule () { |
|
|
|
|
const type = this.form.distinguish |
|
|
|
|
const rules = this.rules |
|
|
|
|
rules.workNumber[0].required = !type && !this.verCodeLogin |
|
|
|
|
rules.account[0].required = (!type && this.verCodeLogin) || type |
|
|
|
|
this.rules.account[0].message = type ? |
|
|
|
|
'请输入账号' : |
|
|
|
|
this.verCodeLogin ? |
|
|
|
|
'请输入手机号/邮箱' : |
|
|
|
|
'请输入学号/工号/手机号/邮箱' |
|
|
|
|
}, |
|
|
|
|
// 切换标签 |
|
|
|
|
typeClick(tab) { |
|
|
|
|
typeClick (tab) { |
|
|
|
|
const { id } = tab |
|
|
|
|
const form = this.form |
|
|
|
|
// 切换了后,全部字段重置 |
|
|
|
@ -231,24 +214,17 @@ export default { |
|
|
|
|
platform: form.platform |
|
|
|
|
} |
|
|
|
|
this.$refs.form.clearValidate() |
|
|
|
|
// 切换了登录方式后,校验规则要变化 |
|
|
|
|
const rules = this.rules |
|
|
|
|
rules.schoolId[0].required = id === 0 |
|
|
|
|
rules.workNumber[0].required = id === 0 |
|
|
|
|
rules.account[0].required = !!id |
|
|
|
|
this.rules.account[0].message = id === 1 ? |
|
|
|
|
'请输入账号' : |
|
|
|
|
'请输入手机号/邮箱' |
|
|
|
|
this.handleRule() |
|
|
|
|
}, |
|
|
|
|
// 选择用户回调 |
|
|
|
|
chooseUser(user) { |
|
|
|
|
chooseUser (user) { |
|
|
|
|
user.isEnable && this.$post(`${this.api.getToken}?id=${user.id}`).then(({ data }) => { |
|
|
|
|
this.token = data.token |
|
|
|
|
this.setLogin() |
|
|
|
|
}).catch(res => {}) |
|
|
|
|
}).catch(res => { }) |
|
|
|
|
}, |
|
|
|
|
// 处理登录成功 |
|
|
|
|
setLogin() { |
|
|
|
|
setLogin () { |
|
|
|
|
util.local.set(Setting.tokenKey, this.token, Setting.tokenExpires) |
|
|
|
|
// 查询是否是客户,如果是客户,则弹出选择端的页面去选择跳转到哪个端 |
|
|
|
|
this.$get(this.api.isClient).then(res => { |
|
|
|
@ -259,28 +235,24 @@ export default { |
|
|
|
|
userName |
|
|
|
|
}) |
|
|
|
|
window.opener && window.opener.location.reload() // 刷新官网 |
|
|
|
|
util.local.set(Setting.storeKey,this.$store.state) |
|
|
|
|
}).catch(res => {}) |
|
|
|
|
util.local.set(Setting.storeKey, this.$store.state) |
|
|
|
|
}).catch(res => { }) |
|
|
|
|
// 查询schoolId |
|
|
|
|
this.$post(this.api.getSchoolIdByToken).then(res => { |
|
|
|
|
this.SET_INFO(res) |
|
|
|
|
}).catch(res => {}) |
|
|
|
|
}).catch(res => { }) |
|
|
|
|
// 登录次数+1 |
|
|
|
|
this.$post(this.api.saveRecord,{ |
|
|
|
|
this.$post(this.api.saveRecord, { |
|
|
|
|
type: 3, |
|
|
|
|
}).then(res => {}).catch(res => {}) |
|
|
|
|
}).then(res => { }).catch(res => { }) |
|
|
|
|
util.successMsg('登录成功') |
|
|
|
|
this.$router.replace('/index') |
|
|
|
|
}, |
|
|
|
|
submit() { |
|
|
|
|
submit () { |
|
|
|
|
this.$refs.form.validate(valid => { |
|
|
|
|
if (valid) { |
|
|
|
|
const form = JSON.parse(JSON.stringify(this.form)) |
|
|
|
|
const { distinguish } = form |
|
|
|
|
if (!form.distinguish && this.setDefault) util.local.set(schoolIdKey, form.schoolId) // 选的是学号工号登录,并且勾选了默认,则存入缓存 |
|
|
|
|
if (util.local.get(schoolIdKey) && !this.setDefault) util.local.remove(schoolIdKey) // 本地缓存了学校id,并且没有勾选默认,则删除缓存 |
|
|
|
|
if (distinguish) form.schoolId = '' |
|
|
|
|
if (!distinguish) form.distinguish = 1 |
|
|
|
|
if (this.verCodeLogin) form.distinguish = 2 |
|
|
|
|
this.$post(this.api.logins, form).then(({ status, data, message }) => { |
|
|
|
|
// 未绑定手机号,则弹框去绑定 |
|
|
|
|
if (status == 30001) { |
|
|
|
@ -288,33 +260,33 @@ export default { |
|
|
|
|
this.getVerImg() |
|
|
|
|
form.code = '' |
|
|
|
|
} else if (status == 200) { |
|
|
|
|
const accounts = data.userAccounts |
|
|
|
|
// 如果返回的是数组,则弹框给用户选择登录哪个用户,否则,直接登录 |
|
|
|
|
if (data instanceof Array) { |
|
|
|
|
// 如果只查询到一个用户,则直接登录,否则,弹框让用户选择 |
|
|
|
|
if (data.length === 1) { |
|
|
|
|
this.chooseUser(data[0]) |
|
|
|
|
} else { |
|
|
|
|
this.users = data |
|
|
|
|
if (accounts instanceof Array) { |
|
|
|
|
this.users = accounts |
|
|
|
|
this.userVisible = true |
|
|
|
|
} |
|
|
|
|
} else { |
|
|
|
|
this.token = data.token |
|
|
|
|
this.setLogin() |
|
|
|
|
} |
|
|
|
|
} else { |
|
|
|
|
form.code = '' |
|
|
|
|
util.errorMsg(message) |
|
|
|
|
} |
|
|
|
|
}).catch(res => {}) |
|
|
|
|
}).catch(res => { |
|
|
|
|
this.getVerImg() |
|
|
|
|
form.code = '' |
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
}, |
|
|
|
|
getVerImg(){ |
|
|
|
|
this.form.random = Math.floor(Math.random()*999999999) |
|
|
|
|
this.verificationIMG = this.api.verification+'?random='+`${this.form.random}` |
|
|
|
|
getVerImg () { |
|
|
|
|
this.form.random = Math.floor(Math.random() * 999999999) |
|
|
|
|
this.verificationIMG = this.api.verification + '?random=' + `${this.form.random}` |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
// 验证手机号 |
|
|
|
|
verifyPhone(phone) { |
|
|
|
|
verifyPhone (phone) { |
|
|
|
|
if (!phone) { |
|
|
|
|
this.$message.error("请输入手机号") |
|
|
|
|
return false |
|
|
|
@ -326,8 +298,19 @@ export default { |
|
|
|
|
return true |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
// 账号申请 |
|
|
|
|
switchType () { |
|
|
|
|
this.verCodeLogin = !this.verCodeLogin |
|
|
|
|
this.$refs.form.clearValidate() |
|
|
|
|
this.handleRule() |
|
|
|
|
}, |
|
|
|
|
// 账号申请 |
|
|
|
|
toAccount () { |
|
|
|
|
this.accountVisible = true |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
// 验证码倒计时 |
|
|
|
|
phoneCountdownLogin() { |
|
|
|
|
phoneCountdownLogin () { |
|
|
|
|
let count = 60 |
|
|
|
|
if (!this.phoneTimerLogin) { |
|
|
|
|
this.phoneDisabledLogin = true |
|
|
|
@ -345,28 +328,28 @@ export default { |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
// 发送验证码 |
|
|
|
|
sendPhoneCodeLogin() { |
|
|
|
|
sendPhoneCodeLogin () { |
|
|
|
|
const phone = this.form.account |
|
|
|
|
if (!this.verifyPhone(phone)) return false |
|
|
|
|
this.$post(`${this.api.sendPhoneVerificationCode}?phoneOrEmail=${phone}&loginOrBind=0&platform=${Setting.platformId}`).then(({ message }) => { |
|
|
|
|
util.successMsg(message) |
|
|
|
|
this.phoneCountdownLogin() |
|
|
|
|
}).catch(res => {}) |
|
|
|
|
}).catch(res => { }) |
|
|
|
|
}, |
|
|
|
|
// 继续绑定 |
|
|
|
|
bindPhone() { |
|
|
|
|
bindPhone () { |
|
|
|
|
this.infoVisible = false |
|
|
|
|
this.binding = true |
|
|
|
|
this.sendPhoneCode(1) |
|
|
|
|
}, |
|
|
|
|
// 解除绑定 |
|
|
|
|
unbindPhone() { |
|
|
|
|
unbindPhone () { |
|
|
|
|
this.infoVisible = false |
|
|
|
|
this.binding = false |
|
|
|
|
this.sendPhoneCode(0) |
|
|
|
|
}, |
|
|
|
|
// 手机号失去焦点回调 |
|
|
|
|
phoneChange() { |
|
|
|
|
phoneChange () { |
|
|
|
|
this.$post(`${this.api.getOtherAccountByPhone}?phone=${this.phone}&platform=${Setting.platformId}`).then(({ userAccounts }) => { |
|
|
|
|
const list = userAccounts |
|
|
|
|
if (list) { |
|
|
|
@ -380,29 +363,29 @@ export default { |
|
|
|
|
} else { |
|
|
|
|
this.binding = true |
|
|
|
|
} |
|
|
|
|
}).catch(res => {}) |
|
|
|
|
}).catch(res => { }) |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
phoneCountdown(){ |
|
|
|
|
phoneCountdown () { |
|
|
|
|
let count = 60 |
|
|
|
|
if(!this.phoneTimer){ |
|
|
|
|
if (!this.phoneTimer) { |
|
|
|
|
this.phoneDisabled = true |
|
|
|
|
this.phoneTimer = setInterval(() => { |
|
|
|
|
console.log('倒计时中') |
|
|
|
|
if(count > 0){ |
|
|
|
|
if (count > 0) { |
|
|
|
|
count-- |
|
|
|
|
this.phoneBtnText = `${count}秒后重试` |
|
|
|
|
}else{ |
|
|
|
|
} else { |
|
|
|
|
this.phoneDisabled = false |
|
|
|
|
clearInterval(this.phoneTimer) |
|
|
|
|
this.phoneTimer = null |
|
|
|
|
this.phoneBtnText = `发送验证码` |
|
|
|
|
} |
|
|
|
|
},1000) |
|
|
|
|
}, 1000) |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
// 发送验证码 |
|
|
|
|
sendPhoneCode(bind) { |
|
|
|
|
sendPhoneCode (bind) { |
|
|
|
|
const { phone } = this |
|
|
|
|
if (!this.verifyPhone(phone)) return false |
|
|
|
|
// 不解绑发送验证码 |
|
|
|
@ -418,16 +401,16 @@ export default { |
|
|
|
|
} else { |
|
|
|
|
util.errorMsg(message) |
|
|
|
|
} |
|
|
|
|
}).catch(res => {}) |
|
|
|
|
}).catch(res => { }) |
|
|
|
|
} else { |
|
|
|
|
this.$post(`${this.api.sendPhoneVerificationCode}?phoneOrEmail=${phone}&loginOrBind=1&platform=${Setting.platformId}`).then(({ message }) => { |
|
|
|
|
util.successMsg(message) |
|
|
|
|
this.phoneCountdown() |
|
|
|
|
}).catch(res => {}) |
|
|
|
|
}).catch(res => { }) |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
// 解绑 |
|
|
|
|
unbind() { |
|
|
|
|
unbind () { |
|
|
|
|
const { password, platform, schoolId, type, workNumber } = this.form |
|
|
|
|
this.$post(this.api.unbindAccounts, { |
|
|
|
|
accountIds: this.accountIds, |
|
|
|
@ -441,10 +424,10 @@ export default { |
|
|
|
|
}).then(({ data }) => { |
|
|
|
|
this.token = data.token |
|
|
|
|
this.setLogin() |
|
|
|
|
}).catch(res => {}) |
|
|
|
|
}).catch(res => { }) |
|
|
|
|
}, |
|
|
|
|
// 绑定手机号 |
|
|
|
|
phoneSubmit() { |
|
|
|
|
phoneSubmit () { |
|
|
|
|
const { phone, phoneCode } = this |
|
|
|
|
if (!this.verifyPhone(phone)) return false |
|
|
|
|
if (!phoneCode) return util.warningMsg('请输入验证码') |
|
|
|
@ -462,7 +445,7 @@ export default { |
|
|
|
|
}).then(({ token }) => { |
|
|
|
|
this.token = token |
|
|
|
|
this.setLogin() |
|
|
|
|
}).catch(res => {}) |
|
|
|
|
}).catch(res => { }) |
|
|
|
|
} else { |
|
|
|
|
this.unbind() |
|
|
|
|
} |
|
|
|
@ -474,82 +457,99 @@ export default { |
|
|
|
|
<style scoped lang="scss"> |
|
|
|
|
.wrap { |
|
|
|
|
min-height: 100%; |
|
|
|
|
background-color: #F3F6FA; |
|
|
|
|
background-color: #f3f6fa; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.ver-code { |
|
|
|
|
position: relative; |
|
|
|
|
|
|
|
|
|
.el-button { |
|
|
|
|
position: absolute; |
|
|
|
|
top: 10px; |
|
|
|
|
right: 10px; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
.login{ |
|
|
|
|
|
|
|
|
|
.login { |
|
|
|
|
min-height: calc(100vh - 70px); |
|
|
|
|
padding-top: calc((100vh - 611px) / 2); |
|
|
|
|
background: url(../../../assets/img/shapes/shape1.png) (0 123px)/auto no-repeat, |
|
|
|
|
url(../../../assets/img/shapes/shape2.png) (35px 238px)/auto no-repeat, |
|
|
|
|
url(../../../assets/img/shapes/shape3.png) (0 485px)/auto no-repeat, |
|
|
|
|
url(../../../assets/img/shapes/shape4.png) (right 50%)/auto no-repeat, |
|
|
|
|
url(../../../assets/img/shapes/shape5.png) (right 80%)/auto no-repeat, |
|
|
|
|
url(../../../assets/img/shapes/shape6.png) (right bottom)/auto no-repeat; |
|
|
|
|
.tab{ |
|
|
|
|
background: url(../../../assets/img/shapes/shape1.png) (0 123px) / auto no-repeat, |
|
|
|
|
url(../../../assets/img/shapes/shape2.png) (35px 238px) / auto no-repeat, |
|
|
|
|
url(../../../assets/img/shapes/shape3.png) (0 485px) / auto no-repeat, |
|
|
|
|
url(../../../assets/img/shapes/shape4.png) (right 50%) / auto no-repeat, |
|
|
|
|
url(../../../assets/img/shapes/shape5.png) (right 80%) / auto no-repeat, |
|
|
|
|
url(../../../assets/img/shapes/shape6.png) (right bottom) / auto no-repeat; |
|
|
|
|
|
|
|
|
|
.tab { |
|
|
|
|
display: flex; |
|
|
|
|
justify-content: space-between; |
|
|
|
|
justify-content: space-around; |
|
|
|
|
align-items: center; |
|
|
|
|
margin-bottom: 24px; |
|
|
|
|
border-bottom: 2px solid #E1E6F2; |
|
|
|
|
li{ |
|
|
|
|
border-bottom: 2px solid #e1e6f2; |
|
|
|
|
|
|
|
|
|
li { |
|
|
|
|
padding: 18px 0; |
|
|
|
|
margin-bottom: -1px; |
|
|
|
|
font-size: 16px; |
|
|
|
|
color: #555; |
|
|
|
|
cursor: pointer; |
|
|
|
|
border-bottom: 4px solid transparent; |
|
|
|
|
&:last-child{ |
|
|
|
|
|
|
|
|
|
&:last-child { |
|
|
|
|
margin-right: 0; |
|
|
|
|
} |
|
|
|
|
&.active{ |
|
|
|
|
color: $main-color;; |
|
|
|
|
|
|
|
|
|
&.active { |
|
|
|
|
color: $main-color; |
|
|
|
|
border-bottom-color: $main-color; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.items { |
|
|
|
|
display: flex; |
|
|
|
|
align-items: center; |
|
|
|
|
} |
|
|
|
|
.form{ |
|
|
|
|
|
|
|
|
|
.form { |
|
|
|
|
width: 436px; |
|
|
|
|
padding: 38px 38px 60px; |
|
|
|
|
margin: 0 auto 0; |
|
|
|
|
border-radius: 6px; |
|
|
|
|
background-color: #fff; |
|
|
|
|
.title{ |
|
|
|
|
|
|
|
|
|
.title { |
|
|
|
|
margin-bottom: 25px; |
|
|
|
|
font-size: 26px; |
|
|
|
|
color: #0B1D30; |
|
|
|
|
color: #0b1d30; |
|
|
|
|
letter-spacing: 4px; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
/deep/.el-form-item{ |
|
|
|
|
|
|
|
|
|
/deep/.el-form-item { |
|
|
|
|
margin-bottom: 20px; |
|
|
|
|
} |
|
|
|
|
/deep/.el-input__inner{ |
|
|
|
|
|
|
|
|
|
/deep/.el-input__inner { |
|
|
|
|
position: relative; |
|
|
|
|
height: 52px; |
|
|
|
|
padding: 0 20px 0 34px; |
|
|
|
|
line-height: 50px; |
|
|
|
|
background-color: #FBFBFB; |
|
|
|
|
border: 1px solid #E1E6F2; |
|
|
|
|
background-color: #fbfbfb; |
|
|
|
|
border: 1px solid #e1e6f2; |
|
|
|
|
border-radius: 4px !important; |
|
|
|
|
} |
|
|
|
|
.default-check { |
|
|
|
|
text-align: right; |
|
|
|
|
|
|
|
|
|
.bottom { |
|
|
|
|
display: flex; |
|
|
|
|
justify-content: space-between; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.el-select { |
|
|
|
|
width: 100%; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.label { |
|
|
|
|
z-index: 1; |
|
|
|
|
position: absolute; |
|
|
|
@ -559,33 +559,40 @@ export default { |
|
|
|
|
height: 18px; |
|
|
|
|
background: url(../../../assets/img/login/account.png) 0 0/100% 100% no-repeat; |
|
|
|
|
} |
|
|
|
|
.school{ |
|
|
|
|
|
|
|
|
|
.school { |
|
|
|
|
background-image: url(../../../assets/img/login/school.png); |
|
|
|
|
} |
|
|
|
|
.workNumber{ |
|
|
|
|
|
|
|
|
|
.workNumber { |
|
|
|
|
width: 17px; |
|
|
|
|
background-image: url(../../../assets/img/login/workNumber.png); |
|
|
|
|
} |
|
|
|
|
.password{ |
|
|
|
|
|
|
|
|
|
.password { |
|
|
|
|
top: 18px; |
|
|
|
|
background-image: url(../../../assets/img/login/password.png); |
|
|
|
|
} |
|
|
|
|
.code{ |
|
|
|
|
|
|
|
|
|
.code { |
|
|
|
|
top: 18px; |
|
|
|
|
background-image: url(../../../assets/img/login/code.png); |
|
|
|
|
} |
|
|
|
|
.ver-img{ |
|
|
|
|
|
|
|
|
|
.ver-img { |
|
|
|
|
position: absolute; |
|
|
|
|
top: 1px; |
|
|
|
|
right: 1px; |
|
|
|
|
} |
|
|
|
|
/deep/.el-form-item__error{ |
|
|
|
|
|
|
|
|
|
/deep/.el-form-item__error { |
|
|
|
|
top: 105%; |
|
|
|
|
left: auto; |
|
|
|
|
right: 0; |
|
|
|
|
color: #FFA94E; |
|
|
|
|
color: #ffa94e; |
|
|
|
|
} |
|
|
|
|
.submit{ |
|
|
|
|
|
|
|
|
|
.submit { |
|
|
|
|
width: 100%; |
|
|
|
|
height: 48px; |
|
|
|
|
margin-top: 30px; |
|
|
|
@ -597,31 +604,37 @@ export default { |
|
|
|
|
border: 0; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
.copyright{ |
|
|
|
|
|
|
|
|
|
.copyright { |
|
|
|
|
padding: 18px 0; |
|
|
|
|
font-size: 12px; |
|
|
|
|
text-align: center; |
|
|
|
|
background-color: #F3F6FA; |
|
|
|
|
a{ |
|
|
|
|
color:#B1B4B8; |
|
|
|
|
background-color: #f3f6fa; |
|
|
|
|
|
|
|
|
|
a { |
|
|
|
|
color: #b1b4b8; |
|
|
|
|
font-size: 12px; |
|
|
|
|
&:hover{ |
|
|
|
|
opacity: .8; |
|
|
|
|
|
|
|
|
|
&:hover { |
|
|
|
|
opacity: 0.8; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.tips { |
|
|
|
|
margin: 0 0 10px 5px; |
|
|
|
|
font-size: 14px; |
|
|
|
|
text-align: center; |
|
|
|
|
color: #666; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/deep/.user-dia { |
|
|
|
|
.tips { |
|
|
|
|
margin-bottom: 20px; |
|
|
|
|
text-align: center; |
|
|
|
|
color: #666; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.users { |
|
|
|
|
li { |
|
|
|
|
display: flex; |
|
|
|
@ -633,27 +646,33 @@ export default { |
|
|
|
|
font-size: 14px; |
|
|
|
|
background-color: #ebeef5; |
|
|
|
|
cursor: pointer; |
|
|
|
|
|
|
|
|
|
&.isEnable { |
|
|
|
|
color: #c0c4cc; |
|
|
|
|
background-color: #f5f7fa; |
|
|
|
|
cursor: not-allowed; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
&:last-child { |
|
|
|
|
margin-bottom: 0; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
&:hover { |
|
|
|
|
background-color: #d3e0ff; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
i { |
|
|
|
|
font-size: 16px; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/deep/.info-dia { |
|
|
|
|
.el-dialog__header { |
|
|
|
|
border-bottom: 0; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.info-header { |
|
|
|
|
position: absolute; |
|
|
|
|
top: 20px; |
|
|
|
@ -662,38 +681,46 @@ export default { |
|
|
|
|
font-size: 16px; |
|
|
|
|
color: #333; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.el-icon-warning { |
|
|
|
|
margin-right: 10px; |
|
|
|
|
color: #e6a23c; |
|
|
|
|
font-size: 24px; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.info-wrap { |
|
|
|
|
padding: 10px 33px; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.users { |
|
|
|
|
max-height: 125px; |
|
|
|
|
margin-top: 20px; |
|
|
|
|
overflow: auto; |
|
|
|
|
|
|
|
|
|
li { |
|
|
|
|
margin: 5px; |
|
|
|
|
font-size: 14px; |
|
|
|
|
color: #333; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.info-footer { |
|
|
|
|
display: flex; |
|
|
|
|
justify-content: space-between; |
|
|
|
|
// align-items: center; |
|
|
|
|
margin-top: 20px; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.el-button { |
|
|
|
|
width: 142px; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.unbind { |
|
|
|
|
white-space: normal; |
|
|
|
|
line-height: 1.6; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@media (max-height: 680px) { |
|
|
|
|
.wrap .login { |
|
|
|
|
padding: 40px 0; |
|
|
|
|