You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

615 lines
22 KiB

4 years ago
<template>
<div class="wrap">
<div class="login">
<div class="form">
3 years ago
<h6 class="title">欢迎使用请登录</h6>
4 years ago
<ul class="tab">
<li v-for="(item,index) in tabList" :key="index" :class="{active: form.distinguish == item.id}" @click="typeClick(item)">{{item.label}}</li>
</ul>
3 years ago
<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>
<el-form-item prop="workNumber">
<label class="label account"></label>
<el-input v-model.trim="form.workNumber" :placeholder="'请输入学号/工号'" @keyup.enter.native="submit"></el-input>
</el-form-item>
</div>
<!-- 手机号登录 -->
<el-form-item v-show="form.distinguish === 1" prop="account">
<label class="label account"></label>
<el-input v-model.trim="form.account" placeholder="请输入账号" @keyup.enter.native="submit"></el-input>
4 years ago
</el-form-item>
3 years ago
<template v-if="form.distinguish === 2">
<el-form-item prop="account">
<label class="label account"></label>
<el-input v-model.trim="form.account" placeholder="请输入手机号/邮箱" @keyup.enter.native="submit"></el-input>
</el-form-item>
<el-form-item prop="code">
<label class="label code"></label>
<div class="flex">
<el-input v-model="form.code" placeholder="请输入验证码" maxlength="6" @keyup.enter.native="submit"></el-input>
<el-button style="margin-left: 10px" type="text" @click="sendPhoneCodeLogin" :disabled="phoneDisabledLogin">{{ phoneBtnTextLogin }}
</el-button>
</div>
</el-form-item>
</template>
<template v-if="form.distinguish !== 2">
<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>
</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>
<img @click="getVerImg" :src="verificationIMG" class="ver-img" alt="">
</el-form-item>
</template>
3 years ago
<div v-show="!form.distinguish" class="default-check">
<el-checkbox v-model="setDefault">设置为默认学校</el-checkbox>
</div>
3 years ago
<el-button class="submit" type="primary" @click="submit">登录</el-button>
4 years ago
</el-form>
</div>
</div>
4 years ago
<el-dialog title="绑定手机号" :visible.sync="phoneVisible" :close-on-click-modal="false" width="576px">
<p class="tips">依据国家政策法规需绑定手机号进行网络实名才可登录使用本平台</p>
4 years ago
<el-form ref="form" label-width="60px">
<el-form-item label="手机号">
3 years ago
<el-input style="width: 394px;" placeholder="请输入手机号" v-model="phone" maxlength="11" @change="phoneChange"></el-input>
4 years ago
</el-form-item>
<el-form-item label="验证码">
<div class="flex">
<el-input v-model="phoneCode" placeholder="请输入验证码" maxlength="6"></el-input>
3 years ago
<el-button style="margin-left: 10px" type="text" @click="sendPhoneCode(1)" :disabled="phoneDisabled">{{phoneBtnText}}</el-button>
4 years ago
</div>
</el-form-item>
</el-form>
<span slot="footer" class="dialog-footer">
<el-button size="small" @click="phoneVisible = false"> </el-button>
<el-button size="small" type="primary" @click="phoneSubmit"> </el-button>
</span>
</el-dialog>
3 years ago
<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 v-for="(user, i) in users" :key="i" @click="chooseUser(user)">
<span>{{ user.schoolName }}{{ user.userName }}{{ user.workNumber }}</span>
<i class="el-icon-right"></i>
</li>
</ul>
</el-dialog>
4 years ago
<div class="footer">
<div class="copyright">
<a href="https://beian.miit.gov.cn/#/Integrated/index" target="_blank">粤ICP备20072679号</a>
</div>
</div>
4 years ago
</div>
</template>
<script>
3 years ago
const schoolIdKey = 'dataSchoolId'
import { mapMutations, mapActions } from 'vuex'
4 years ago
import vHead from '@/layouts/header'
4 years ago
import util from '@/libs/util'
4 years ago
import Setting from '@/setting'
4 years ago
import vFooter from '@/layouts/footer'
4 years ago
export default {
data: function() {
return {
4 years ago
tabList: [
3 years ago
{
id: 0,
label: '学号/工号登录'
}, {
id: 1,
label: '学校管理员登录'
}, {
id: 2,
label: '手机号/邮箱'
}
4 years ago
],
3 years ago
setDefault: !!util.local.get(schoolIdKey), // 本地缓存里有学校id,则默认勾选
4 years ago
verificationIMG: '',
3 years ago
schoolList: [],
4 years ago
form: {
3 years ago
schoolId: '',
workNumber: '',
account: '',
password: '',
code: '', // 验证码
random: '', // 随机数
distinguish: 0, // 区分手机号账号登录,1为账号登录,2为手机号或邮箱登录
type: 2, // 平台端区分:0->教师端 1->学生端 2->无端
platform: Setting.platformId
4 years ago
},
4 years ago
rules: {
3 years ago
schoolId: [{ required: true, message: "请选择学校", trigger: "change" }],
workNumber: [{ required: true, message: "请输入学生学号", trigger: "blur" }],
account: [{ required: false, message: "请输入账号", trigger: "blur" }],
password: [{ required: true, message: "请输入密码", trigger: "blur" }],
code: [{ required: true, message: "请输入验证码", trigger: "blur" }]
4 years ago
},
3 years ago
phoneDisabledLogin: false,
phoneTimerLogin: null,
phoneBtnTextLogin: '发送验证码',
token: '',
4 years ago
phoneVisible: false,
phone: '',
phoneCode: '',
phoneDisabled: false,
phoneTimer: null,
3 years ago
phoneOpener: '',
3 years ago
phoneBtnText: '发送验证码',
userVisible: false,
3 years ago
users: [],
accountIds: [],
binding: true
4 years ago
};
},
4 years ago
components: {vHead,vFooter},
4 years ago
mounted(){
3 years ago
this.getSchool()
this.getVerImg()
4 years ago
},
4 years ago
methods: {
...mapMutations("user", [
'SET_CUSTOMERNAME', 'SET_CUSTOMER', 'SET_INFO'
]),
4 years ago
...mapActions('user', [
3 years ago
'login', 'setCustomer'
4 years ago
]),
3 years ago
getSchool() {
this.$get(this.api.querySchool, {
provinceId: '',
cityId: ''
}).then(res => {
this.schoolList = res.list
// 取本地缓存里的学校id
const schoolId = util.local.get(schoolIdKey)
if (schoolId) this.form.schoolId = schoolId
}).catch(res => {})
},
// 切换标签
typeClick(tab) {
const { id } = tab
const form = this.form
// 切换了后,全部字段重置
this.form = {
schoolId: form.schoolId,
workNumber: '',
account: '',
password: '',
code: '',
random: form.random,
distinguish: id,
type: 2,
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 ?
'请输入账号' :
'请输入手机号/邮箱'
},
// 选择用户回调
chooseUser(user) {
this.$post(`${this.api.getToken}?id=${user.id}`).then(({ data }) => {
this.queryClient(data.token)
}).catch(res => {})
4 years ago
},
// 处理登录成功
setLogin() {
window.opener && window.opener.location.reload() // 刷新官网
util.local.set(Setting.tokenKey, this.token, Setting.tokenExpires)
// 查询是否是客户,如果是客户,则弹出选择端的页面去选择跳转到哪个端
this.$get(this.api.isClient).then(res => {
// 如果是客户
this.SET_CUSTOMER(res.customer)
const userName = res.customerName
userName && this.SET_INFO({
userName
})
}).catch(res => {})
// 查询schoolId
this.$post(this.api.getSchoolIdByToken).then(res => {
this.SET_INFO(res)
}).catch(res => {})
// 登录次数+1
this.$post(this.api.saveRecord,{
type: 3,
}).then(res => {}).catch(res => {})
// 查询是否有更新日志,如果返回了true,则直接跳转到日志页
this.$get(this.api.logNotification).then(res => {
const history = this.$route.query.redirect
const redirect = res.notification ?
'/log' :
history ?
decodeURIComponent(history) :
'/index'
util.successMsg('登录成功')
this.$router.replace(redirect)
}).catch(res => {})
},
3 years ago
submit() {
this.$refs.form.validate(valid => {
4 years ago
if (valid) {
3 years ago
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
this.$post(this.api.logins, form).then(({ status, data, message }) => {
// 未绑定手机号,则弹框去绑定
if (status == 30001) {
this.phoneVisible = true
this.getVerImg()
form.code = ''
} else if (status == 200) {
// 如果返回的是数组,则弹框给用户选择登录哪个用户,否则,直接登录
if (data instanceof Array) {
this.users = data
this.userVisible = true
} else {
this.token = data.token
this.setLogin()
}
} else {
util.errorMsg(message)
}
}).catch(res => {})
4 years ago
}
})
},
4 years ago
getVerImg(){
4 years ago
this.form.random = Math.floor(Math.random()*999999999)
this.verificationIMG = this.api.verification+'?random='+`${this.form.random}`
},
3 years ago
// 验证手机号
verifyPhone(phone) {
if (!phone) {
util.warningMsg("请输入手机号")
return false
}
if (!/^1[3456789]\d{9}$/.test(phone) && !/^([a-zA-Z]|[0-9])(\w|\-)+@[a-zA-Z0-9]+\.([a-zA-Z]{2,4})$/.test(phone)) {
util.warningMsg("请输入正确的手机号/邮箱")
return false
}
return true
},
// 验证码倒计时
phoneCountdownLogin() {
let count = 60
if (!this.phoneTimerLogin) {
this.phoneDisabledLogin = true
this.phoneTimerLogin = setInterval(() => {
if (count > 0) {
count--
this.phoneBtnTextLogin = `${count}秒后重试`
} else {
this.phoneDisabledLogin = false
clearInterval(this.phoneTimerLogin)
this.phoneTimerLogin = null
this.phoneBtnTextLogin = `发送验证码`
}
}, 1000)
}
},
// 发送验证码
sendPhoneCodeLogin() {
const phone = this.form.account
if (!this.verifyPhone(phone)) return false
3 years ago
this.$post(`${this.api.sendPhoneVerificationCode}?phoneOrEmail=${phone}&loginOrBind=0`).then(({ message }) => {
3 years ago
util.successMsg(message)
this.phoneCountdownLogin()
}).catch(res => {})
},
3 years ago
// 手机号失去焦点回调
phoneChange() {
this.$post(`${this.api.getOtherAccountByPhone}?phone=${this.phone}&platform=${Setting.platformId}`).then(({ userAccounts }) => {
const list = userAccounts
if (list) {
const msg = []
list.map(e => {
msg.push(`${e.userName}${e.schoolName},学号${e.workNumber}`)
})
this.accountIds = list.map(e => e.id)
this.$confirm(`该手机号已与${msg.join(';')}的用户绑定,是否为本人?选择否,则解绑以上用户信息,并授权手机号绑定新用户信息。`, '提示', {
type: 'warning',
confirmButtonText: '是',
cancelButtonText: '否'
}).then(() => {
debugger
this.binding = true
this.sendPhoneCode(1)
}).catch(() => {
debugger
this.binding = false
this.sendPhoneCode(0)
})
}
}).catch(res => {})
},
3 years ago
4 years ago
phoneCountdown(){
let count = 60
if(!this.phoneTimer){
this.phoneDisabled = true
this.phoneTimer = setInterval(() => {
console.log('倒计时中')
if(count > 0){
count--
this.phoneBtnText = `${count}秒后重试`
}else{
this.phoneDisabled = false
clearInterval(this.phoneTimer)
this.phoneTimer = null
this.phoneBtnText = `发送验证码`
}
},1000)
}
},
3 years ago
// 发送验证码
sendPhoneCode(bind) {
const { phone } = this
if (!this.verifyPhone(phone)) return false
// 不解绑发送验证码
if (bind) {
this.$post(this.api.sendPhoneOrEmailCode, {
platform: Setting.platformId,
phone,
types: 2
}).then(({ message }) => {
if (message.opener) {
this.phoneCountdown()
this.phoneOpener = message.opener
} else {
util.errorMsg(message)
}
4 years ago
}).catch(res => {})
3 years ago
} else {
this.$post(`${this.api.sendPhoneVerificationCode}?phoneOrEmail=${phone}&loginOrBind=1`).then(({ message }) => {
this.phoneCountdown()
4 years ago
}).catch(res => {})
3 years ago
}
},
// 解绑
unbind() {
const { password, platform, schoolId, type, workNumber } = this.form
this.$post(this.api.unbindAccounts, {
accountIds: this.accountIds,
code: this.phoneCode,
password,
phone: this.phone,
platform,
schoolId,
type,
workNumber,
}).then(({ token }) => {
this.token = token
this.setLogin()
}).catch(res => {})
4 years ago
},
3 years ago
// 绑定手机号
phoneSubmit() {
const { phone, phoneCode } = this
if (!this.verifyPhone(phone)) return false
if (!phoneCode) return util.warningMsg('请输入验证码')
if (this.binding) {
this.$post(this.api.bindPhoneOrEmail, {
phone,
types: 2,
code: phoneCode,
opener: this.phoneOpener,
platform: Setting.platformId,
account: this.form.workNumber
}).then(({ token }) => {
this.token = token
this.setLogin()
}).catch(res => {})
} else {
this.unbind()
}
}
4 years ago
},
};
</script>
<style scoped lang="scss">
.wrap {
min-height: 100%;
background-color: #F3F6FA;
3 years ago
}
.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{
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 24px;
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{
margin-right: 0;
}
3 years ago
&.active{
color: $main-color;;
border-bottom-color: $main-color;
4 years ago
}
}
}
3 years ago
.items {
display: flex;
align-items: center;
}
.form{
width: 436px;
padding: 38px 38px 60px;
margin: 0 auto 0;
border-radius: 6px;
background-color: #fff;
.title{
margin-bottom: 25px;
font-size: 26px;
color: #0B1D30;
letter-spacing: 4px;
}
}
/deep/.el-form-item{
margin-bottom: 20px;
}
/deep/.el-input__inner{
position: relative;
height: 52px;
padding: 0 20px 0 34px;
line-height: 50px;
background-color: #FBFBFB;
border: 1px solid #E1E6F2;
border-radius: 4px !important;
}
.default-check {
text-align: right;
}
.el-select {
width: 100%;
}
.label {
z-index: 1;
position: absolute;
top: 17px;
left: 11px;
width: 18px;
height: 18px;
background: url(../../../assets/img/login/account.png) 0 0/100% 100% no-repeat;
}
.school{
background-image: url(../../../assets/img/login/school.png);
}
.workNumber{
width: 17px;
background-image: url(../../../assets/img/login/workNumber.png);
}
.password{
top: 18px;
background-image: url(../../../assets/img/login/password.png);
}
.code{
top: 18px;
background-image: url(../../../assets/img/login/code.png);
}
.ver-img{
position: absolute;
top: 1px;
right: 1px;
}
/deep/.el-form-item__error{
top: 105%;
left: auto;
right: 0;
color: #FFA94E;
}
.submit{
width: 100%;
height: 48px;
margin-top: 30px;
line-height: 48px;
padding: 0;
font-size: 20px;
background-color: $main-color;
border-radius: 4px;
border: 0;
}
}
.copyright{
padding: 18px 0;
font-size: 12px;
text-align: center;
background-color: #F3F6FA;
a{
color:#B1B4B8;
font-size: 12px;
&:hover{
opacity: .8;
4 years ago
}
4 years ago
}
}
.tips {
margin: 0 0 10px 5px;
font-size: 14px;
text-align: center;
color: #666;
}
3 years ago
/deep/.user-dia {
.tips {
margin-bottom: 20px;
text-align: center;
color: #666;
}
.users {
li {
display: flex;
justify-content: space-between;
align-items: center;
padding: 0 15px;
margin-bottom: 10px;
line-height: 40px;
font-size: 14px;
background-color: #ebeef5;
cursor: pointer;
&:last-child {
margin-bottom: 0;
}
&:hover {
background-color: #d3e0ff;
}
i {
font-size: 16px;
}
}
}
}
@media (max-height: 680px) {
.wrap .login {
padding: 40px 0;
3 years ago
}
}
4 years ago
</style>