Browse Source

feature-hub-1.0:新增登录验证码

feature-1.0
‘‘ 3 years ago
parent
commit
af3b0bf434
  1. 75
      pages/login/login.vue

75
pages/login/login.vue

@ -32,17 +32,19 @@
<uni-easyinput type="password" v-model="formData.password" placeholder="请输入密码" :inputBorder="false" />
</uni-forms-item>
<uni-forms-item prop="code" v-if="captchaOnOff">
<uni-easyinput
v-model="formData.code"
auto-complete="off"
placeholder="验证码"
style="width: 63%"
@keyup.enter.native="handleLogin">
<svg-icon slot="prefix" icon-class="validCode" class="el-input__icon input-icon" />
</uni-easyinput>
<div class="login-code">
<img :src="codeUrl" @click="getCode" class="login-code-img"/>
<uni-forms-item required name="code">
<template #label>
<div class="form-label l-code">
<uni-icons type="map-pin-ellipse" size="18" color="#FFFFFF"></uni-icons>
</div>
</template>
<div class="login-code-item">
<uni-easyinput type="text" v-model="formData.code" placeholder="请输入验证码" :inputBorder="false"/>
<template>
<div>
<image :src="codeUrl" @click="getCode" class="login-code-img"/>
</div>
</template>
</div>
</uni-forms-item>
</uni-forms>
@ -67,12 +69,12 @@
noClick:true, //
//
captchaOnOff: true,
codeUrl: "",
codeUrl: '',
formData: {
phone: '',
password: '',
code: "",
uuid: ""
code: '',
uuid: ''
},
rules: {
@ -95,10 +97,12 @@
}
}]
},
code: [{
required: true,
errorMessage: '请输入验证码'
}],
code: {
rules: [{
required: true,
errorMessage: '请输入验证码'
}]
},
phone: {
rules: [{
required: true,
@ -138,32 +142,29 @@
//
getCode() {
getCodeImg().then(res => {
this.captchaOnOff = res.captchaOnOff === undefined ? true : res.captchaOnOff;
this.captchaOnOff = res.data.captchaOnOff === undefined ? true : res.data.captchaOnOff;
if (this.captchaOnOff) {
this.codeUrl = "data:image/gif;base64," + res.img;
this.formData.uuid = res.uuid;
this.codeUrl = "data:image/gif;base64," + res.data.img;
this.formData.uuid = res.data.uuid;
}
});
},
login(e) {
// console.log(e)
let that = this
// console.log('that.phoneFlag', that.phoneFlag)
// console.log('that.passwordFlag', that.passwordFlag)
if (that.phoneFlag === true && that.passwordFlag === true) {
// console.log('')
uni.showLoading({
title: '艺术家登录中!',
})
let pwd = md5(that.formData.password)
const param = {
phone: that.formData.phone,
password: pwd
password: pwd,
code: that.formData.code,
uuid: that.formData.uuid
}
// console.log('form', param)
login(param).then(response => {
if (response.data.code === 200) {
// console.log('response',response)
//token
uni.setStorage({
key: 'userInfo',
@ -260,6 +261,11 @@
background: $uni-bg-base-color;
}
.l-code {
background: $uni-bg-base-color;
}
}
.login-btn {
@ -298,4 +304,19 @@
border-radius: 0 24rpx 24rpx 0;
}
}
.login-code-item{
display: flex;
width: 540rpx;
height: 100rpx;
.login-code-img {
margin-left: 50rpx;
height: 90rpx;
width: 260rpx;
border-radius: 24rpx 24rpx 24rpx 24rpx;
}
}
</style>

Loading…
Cancel
Save