qa-prevention-xgf-app/pages/login/login.vue

132 lines
3.8 KiB
Vue
Raw Normal View History

2023-11-07 10:24:08 +08:00
<template>
<view class="wui_login">
<view class="form">
2024-09-30 09:40:54 +08:00
<u--form labelPosition="top" :model="form" labelWidth="140rpx">
2023-11-07 10:24:08 +08:00
<u-form-item label="账号" borderBottom>
2024-09-30 09:40:54 +08:00
<u--input v-model="form.userName" border="none" placeholder="请输入账号..."></u--input>
2023-11-07 10:24:08 +08:00
</u-form-item>
<u-form-item label="密码" borderBottom>
2024-09-30 09:40:54 +08:00
<u--input v-model="form.userPwd" type="password" border="none" placeholder="请输入密码..."></u--input>
2023-11-07 10:24:08 +08:00
</u-form-item>
</u--form>
2024-09-30 09:40:54 +08:00
<u-button type="primary" text="登 录" custom-style="margin:40rpx 0 20rpx 0"
@click="$u.debounce(fnLogin, 1000,true)"></u-button>
2023-11-07 10:24:08 +08:00
<view class="tip">
<view @click="fnForgotPassword"></view>
<view @click="fnRegister"></view>
</view>
</view>
<u-modal :show="updateVersion.modalShow" title="温馨提示" :showConfirmButton="updateVersion.showConfirmButton"
2024-09-30 09:40:54 +08:00
:showCancelButton="updateVersion.showCancelButton" :confirmText="updateVersion.confirmText"
:cancelText="updateVersion.cancelText"
2023-11-07 10:24:08 +08:00
@cancel="modalCancel" @confirm="modalConfirm">
<view style="text-align: center;color:#606266">
<rich-text :nodes="updateVersion.modalContent"></rich-text>
</view>
</u-modal>
</view>
</template>
<script>
import {submitLogin} from '../../api/index'
import updateVersion from '../../utils/updateVersion'
import JSEncrypt from '../../static/js/jsencrypt.min.js'
export default {
2024-09-30 09:40:54 +08:00
mixins: [updateVersion],
2023-11-07 10:24:08 +08:00
data() {
return {
publicKey: 'MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQC2zCyUYSD0pNrbtaYdvGfHfWoRV+fo/2N9O2PLLz/jZvMkigkq4eAq4JO+Ek0wDHI9WxP6iTSLYCHhIOs9CQTPvyldJFm8riZtQZlBTD8Plkb3rjrgwTqbBi3w3+HKYdkSvGFXJIdSOPbpXnj5BzN8vlVaybs24R/vpUzG9178lwIDAQAB',
form: {
userName: '',
userPwd: ''
2023-11-07 10:24:08 +08:00
}
}
},
onLoad() {
this.fnUpdateVersion(false)
},
methods: {
2024-09-30 09:40:54 +08:00
fnRegister() {
2023-11-07 10:24:08 +08:00
uni.$u.route({
url: '/pages/login/register',
})
},
2024-09-30 09:40:54 +08:00
fnForgotPassword() {
2023-11-07 10:24:08 +08:00
uni.$u.route({
url: '/pages/login/forgot_password',
})
},
async fnLogin() {
if (!this.form.userName) {
uni.$u.toast('请输入用户名')
return;
}
// if(!uni.$u.test.mobile(this.form.userName)){
// uni.$u.toast('手机号格式不正确')
// return;
// }
if (!this.form.userPwd) {
uni.$u.toast('密码不能为空')
return;
}
var jsencrypt = new JSEncrypt()
jsencrypt.setPublicKey(this.publicKey)
const keydataVal = jsencrypt.encrypt('qdkjchina' + this.form.userName + ',qd,' + this.form.userPwd)
2024-09-30 09:40:54 +08:00
let resData = await submitLogin({'KEYDATA': keydataVal});
2023-11-07 10:24:08 +08:00
// console.log(resData)
2024-09-30 09:40:54 +08:00
if (resData.PHOTO != '') {
resData.PHOTO = this.$filePath + resData.PHOTO
}
2023-11-07 10:24:08 +08:00
await this.$store.dispatch('setUserInfo', resData);
uni.$u.route({
url: '/pages/index/index',
type: 'reLaunch'
})
}
}
}
</script>
<style lang="scss" scoped>
.wui_login {
background-image: url(/static/bg-login.png);
background-repeat: no-repeat;
2024-09-30 09:40:54 +08:00
background-size: 100% 100%;
height: 100vh;
2023-11-07 10:24:08 +08:00
background-color: #058cf5;
position: relative;
2024-09-30 09:40:54 +08:00
.title {
2023-11-07 10:24:08 +08:00
color: #fff;
2024-08-27 15:04:44 +08:00
font-size: 44rpx;
2023-11-07 10:24:08 +08:00
font-weight: 500;
display: flex;
flex-direction: column;
2024-08-27 15:04:44 +08:00
padding-top: 106rpx;
padding-left: 46rpx;
2023-11-07 10:24:08 +08:00
line-height: 1.6;
}
2024-09-30 09:40:54 +08:00
.form {
2023-11-07 10:24:08 +08:00
width: 70%;
position: absolute;
top: 49%;
left: 50%;
2024-09-30 09:40:54 +08:00
background-color: #fff;
border-radius: 20rpx;
padding: 30rpx 9%;
2023-11-07 10:24:08 +08:00
transform: translate(-50%, -50%);
2024-09-30 09:40:54 +08:00
.tip {
font-size: 24rpx;
2024-08-27 15:04:44 +08:00
margin-bottom: 40rpx;
2023-11-07 10:24:08 +08:00
color: #0b80e7;
display: flex;
align-items: center;
justify-content: space-between;
}
}
}
</style>