登录修改

This commit is contained in:
zhaoxiao
2021-10-13 10:49:41 +08:00
parent 0db860bdfd
commit cd0297a93d
3 changed files with 7 additions and 3 deletions
+2
View File
@@ -293,6 +293,8 @@ export default {
const hide = this.$message.loading('验证码发送中..', 0)
let smsParams = {}
smsParams.phone = values.username
// 登录--1
smsParams.codeType = 1
let interval
getAction('/company/sendVerificationCode', smsParams)
.then(res => {
+3 -1
View File
@@ -255,7 +255,9 @@ export default {
if (!err) {
const hide = this.$message.loading('验证码发送中..', 0)
let smsParams = {
phone: phone
phone: phone,
// 忘记密码是2
codeType: 2
}
getAction('/company/sendVerificationCode', smsParams).then(res => {
if (!res.success) {
+2 -2
View File
@@ -79,7 +79,7 @@ module.exports = {
},
devServer: {
port: 21826,
port: 3001,
proxy: {
/* '/api': {
target: 'https://mock.ihx.me/mock/5baf3052f7da7e07e04a5116/antd-pro', //mock API接口系统
@@ -90,7 +90,7 @@ module.exports = {
}
},*/
'/jero-boot': {
target: 'http://localhost:21824', //请求本地 jero-boot后台项目
target: 'http://localhost:8080', //请求本地 jero-boot后台项目
ws: false,
changeOrigin: true
},