登录等修改

dev_2022-04-07
yujialong 3 years ago
parent 13f701d7d3
commit c95285013d
  1. 5
      src/api/index.js
  2. 124
      src/pages/account/login/index.vue
  3. 18
      src/pages/setting/person/info.vue
  4. 4
      src/setting.js

@ -5,15 +5,14 @@ const host1 = `http://192.168.31.137:9000/`
const uploadURL = "http://39.108.250.202:9000/";
export default {
host,
// 登录
logins: `${host1}users/users/user/login`,
verification: `${host1}users/users/user/captcha`,// 验证码图片
logoDetail: `occupationlab/sys/logo/detail`, //查看系统设置信息
isClient: `${host1}users/users/user/isClient`,
sendPhoneVerificationCode: `${host1}users/users/user/sendPhoneVerificationCode`,
getToken: `${host1}users/users/user/getToken`,
getOtherAccountByPhone: `${host1}users/users/user/getOtherAccountByPhone`,
unbindAccounts: `${host1}users/users/user/getOtherAccountunbindAccountsByPhone`,
platformLogList: `nakadai/log/platformLogList`,
logNotification: `nakadai/log/logNotification`,

@ -14,9 +14,6 @@
<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>
<div class="default-check">
<el-checkbox v-model="setDefault">设置为默认学校</el-checkbox>
</div>
</el-form-item>
<div class="items">
<el-form-item prop="type" style="width: 35%;margin-right: 15px">
@ -73,6 +70,9 @@
<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>
<el-button class="submit" type="primary" @click="submit">登录</el-button>
</el-form>
</div>
@ -83,12 +83,12 @@
</div>
<el-form ref="form" label-width="60px">
<el-form-item label="手机号">
<el-input style="width: 100%;" placeholder="请输入手机号" v-model="phone" maxlength="11"></el-input>
<el-input style="width: 100%;" placeholder="请输入手机号" v-model="phone" maxlength="11" @change="phoneChange"></el-input>
</el-form-item>
<el-form-item label="验证码">
<div style="display: flex;">
<el-input v-model="phoneCode" placeholder="请输入验证码" maxlength="6"></el-input>
<el-button style="margin-left: 10px" type="text" @click="sendPhoneCode" :disabled="phoneDisabled">{{ phoneBtnText }}
<el-button style="margin-left: 10px" type="text" @click="sendPhoneCode(1)" :disabled="phoneDisabled">{{ phoneBtnText }}
</el-button>
</div>
</el-form-item>
@ -174,12 +174,15 @@ export default {
phoneCode: '',
phoneDisabled: false,
phoneTimer: null,
phoneOpener: '',
phoneBtnText: '发送验证码',
selectVisible: false,
selectedRole: '',
token: '',
userVisible: false,
users: []
users: [],
accountIds: [],
binding: true
};
},
components: {
@ -370,12 +373,37 @@ export default {
sendPhoneCodeLogin() {
const phone = this.form.account
if (!this.verifyPhone(phone)) return false
this.$post(`${this.api.sendPhoneVerificationCode}?phoneOrEmail=${phone}`).then(({ message }) => {
this.$post(`${this.api.sendPhoneVerificationCode}?phoneOrEmail=${phone}&loginOrBind=0`).then(({ message }) => {
util.successMsg(message)
this.phoneCountdownLogin()
}).catch(res => {})
},
//
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 => {})
},
//
phoneCountdown() {
let count = 60
@ -395,41 +423,66 @@ export default {
}
},
//
sendPhoneCode() {
sendPhoneCode(bind) {
const { phone } = this
if (!this.verifyPhone(phone)) return false
this.$post(this.api.sendPhoneOrEmailCode, {
platform: Setting.platformId,
phone,
types: 2
}).then(({ message }) => {
if (message.opener) {
//
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)
}
}).catch(res => {})
} else {
this.$post(`${this.api.sendPhoneVerificationCode}?phoneOrEmail=${phone}&loginOrBind=1`).then(({ message }) => {
this.phoneCountdown()
this.phoneOpener = message.opener
} else {
util.errorMsg(message)
}
}).catch(res => {})
}
},
//
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 => {})
},
//
phoneSubmit() {
const { phone, phoneCode } = this
if (!this.verifyPhone(phone)) return false
if (!phoneCode) return util.warningMsg("请输入验证码")
this.$post(this.api.bindPhoneOrEmail, {
phone,
types: 2,
code: phoneCode,
opener: this.phoneOpener,
platform: Setting.platformId,
account: this.form.workNumber
}).then(({ token }) => {
util.successMsg("绑定成功")
this.form.phone = this.phone
this.phoneVisible = false
this.token = token
this.setLogin()
}).catch(res => {})
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()
}
}
}
};
@ -500,9 +553,6 @@ export default {
border: 1px solid #E1E6F2;
border-radius: 4px !important;
}
.school-select {
// margin-bottom: 10px;
}
.default-check {
text-align: right;
}

@ -1,6 +1,6 @@
<template>
<div>
<div class="scroll">
<div class="scroll" v-loading="loading">
<div class="page">
<h6 class="l-title"><img src="@/assets/img/info1.png" alt=""> 基本信息</h6>
<div class="page-content">
@ -134,9 +134,9 @@
<div class="page-content">
<ul class="list">
<div class="line info imp">
<li>
<li style="width: 334px;margin-right: 90px">
<label>学号</label>
<el-input class="m-r-10" style="width: 220px" size="small" v-model="form.workNumber" clearable disabled></el-input>
<el-input class="m-r-10" size="small" v-model="form.workNumber" clearable disabled></el-input>
</li>
<li>
<label>手机号</label>
@ -188,7 +188,7 @@
<el-dialog :title="form.phone ? '更换手机号' : '绑定手机号'" :visible.sync="phoneVisible" :close-on-click-modal="false" @close="closePhone" width="30%">
<el-form ref="form" :model="form" label-width="60px">
<el-form-item label="手机号">
<el-input style="width: 394px;" placeholder="请输入手机号" v-model="phone" maxlength="11"></el-input>
<el-input placeholder="请输入手机号" v-model="phone" maxlength="11"></el-input>
</el-form-item>
<el-form-item label="验证码">
<div class="flex">
@ -241,6 +241,7 @@ import util from '@/libs/util'
export default {
data() {
return {
loading: false,
form: {
name:'',
workNumber:'',
@ -356,7 +357,7 @@ export default {
}
},
mounted() {
this.getdata()
this.getData()
this.getProvince()
this.getSchoolData()
this.getSubject()
@ -366,17 +367,18 @@ export default {
...mapActions('user', [
'setAvatar','setUserName'
]),
getdata() {
getData() {
this.loading = true
this.$get(this.api.queryUserInfoDetails).then(({ result }) => {
const userInfo = result.hrUserInfo
const { userAccount } = result
userInfo.account = userAccount.account
userInfo.phone = userAccount.phone
userInfo.email = userAccount.email
userInfo.workNumber = userAccount.workNumber
this.form = userInfo
this.originAccount = this.form.account
this.archivesList = result.personalFileList
this.loading = false
this.$nextTick(() => {
if(this.form.provinceId){
this.getCityData(1)
@ -551,7 +553,7 @@ export default {
}).then(() => {
this.$get(this.api.unbindMobilePhone).then(res => {
this.$message.success('解绑成功')
this.getdata()
this.getData()
}).catch(res => {})
}).catch(() => {})
},

@ -31,8 +31,8 @@ if (isHh) {
// 本地
systemPath = `http://192.168.31.125:8093`
// host = "http://39.108.250.202:9000/"; // 中台测试服
host = "http://192.168.31.151:9000/"; // 榕
// host = "http://192.168.31.137:9000"; // 赓
// host = "http://192.168.31.151:9000/"; // 榕
host = "http://192.168.31.137:9000"; // 赓
}
const Setting = {

Loading…
Cancel
Save