Files
crmeb_java/admin/src/views/sms/smsConfig/components/register.vue

226 lines
5.8 KiB
Vue

<template>
<div class="login-container">
<el-form ref="formInline" size="small" :model="formInline" :rules="ruleInline" class="login-form" autocomplete="on" label-position="left">
<div class="title-container">
<h3 class="title mb15">一号通账户注册</h3>
</div>
<el-form-item prop="phone">
<el-input
v-model="formInline.phone"
placeholder="请输入您的手机号"
prefix-icon="el-icon-phone-outline"
/>
</el-form-item>
<el-form-item prop="password">
<el-input
:key="passwordType"
v-model="formInline.password"
:type="passwordType"
placeholder="密码"
tabindex="2"
auto-complete="off"
prefix-icon="el-icon-lock"
/>
<span class="show-pwd" @click="showPwd">
<svg-icon :icon-class="passwordType === 'password' ? 'eye' : 'eye-open'" />
</span>
</el-form-item>
<el-form-item prop="domain">
<el-input
v-model="formInline.domain"
placeholder="请输入网址域名"
prefix-icon="el-icon-position"
/>
</el-form-item>
<el-form-item prop="code" class="captcha">
<div class="acea-row" style="flex-wrap: nowrap;">
<el-input
v-model="formInline.code"
placeholder="验证码"
type="text"
tabindex="1"
autocomplete="off"
prefix-icon="el-icon-message"
style="width: 90%"
/>
<el-button size="mini" :disabled=!this.canClick @click="cutDown" v-hasPermi="['admin:pass:send:code']">{{cutNUm}}</el-button>
</div>
</el-form-item>
<el-button :loading="loading" type="primary" style="width:100%;margin-bottom:20px;" @click="handleSubmit('formInline')" v-hasPermi="['admin:pass:register']">注册</el-button>
<el-button type="primary" style="width:100%;margin-bottom:20px;" @click="changelogo" v-hasPermi="['admin:pass:login']">立即登录</el-button>
</el-form>
</div>
</template>
<script>
import { captchaApi, registerApi } from '@/api/sms'
export default {
name: 'Register',
data() {
const validatePhone = (rule, value, callback) => {
if (!value) {
return callback(new Error('请填写手机号'))
} else if (!/^1[3456789]\d{9}$/.test(value)) {
callback(new Error('手机号格式不正确!'))
} else {
callback()
}
}
return {
loading: false,
passwordType: 'password',
captchatImg: '',
cutNUm: '获取验证码',
canClick: true,
formInline: {
account: '',
code: '',
domain: '',
phone: '',
password: ''
},
ruleInline: {
password: [
{ required: true, message: '请输入短信平台密码/token', trigger: 'blur' }
],
domain: [
{ required: true, message: '请输入网址域名', trigger: 'blur' }
],
phone: [
{ required: true, validator: validatePhone, trigger: 'blur' }
],
code: [
{ required: true, message: '请输入验证码', trigger: 'blur' }
]
}
}
},
methods: {
showPwd() {
if (this.passwordType === 'password') {
this.passwordType = ''
} else {
this.passwordType = 'password'
}
this.$nextTick(() => {
this.$refs.password.focus()
})
},
// 短信验证码
cutDown() {
if (this.formInline.phone) {
if (!this.canClick) return
this.canClick = false
this.cutNUm = 60
captchaApi({
phone: this.formInline.phone,
types: 0
}).then(async res => {
this.$message.success('发送成功')
})
const time = setInterval(() => {
this.cutNUm--
if (this.cutNUm === 0) {
this.cutNUm = '获取验证码'
this.canClick = true
clearInterval(time)
}
}, 1000)
} else {
this.$message.warning('请填写手机号!')
}
},
// 注册
handleSubmit(name) {
this.formInline.account = this.formInline.phone
this.$refs[name].validate((valid) => {
if (valid) {
this.loading = true;
registerApi(this.formInline).then(async res => {
this.$message.success('注册成功')
setTimeout(() => {
this.changelogo()
}, 1000)
this.loading = false;
}).catch(()=>{
this.loading = false;
})
} else {
return false
}
})
},
// 立即登录
changelogo() {
this.$emit('on-change')
}
}
}
</script>
<style lang="scss" scoped>
.el-button+.el-button{
margin-left: 0px !important;
}
.title{
text-align: center;
}
.captcha{
display: flex;
align-items: flex-start;
::v-deep.el-form-item__content{
width: 100%;
}
}
$bg: #2d3a4b;
$dark_gray: #889aa4;
$light_gray: #eee;
.imgs{
img{
height: 36px;
}
}
.login-form {
flex: 1;
padding: 32px 0;
text-align: center;
width: 384px;
margin: 0 auto;
overflow: hidden;
}
.tips {
font-size: 14px;
color: #fff;
margin-bottom: 10px;
span {
&:first-of-type {
margin-right: 16px;
}
}
}
.svg-container {
padding: 6px 5px 6px 15px;
color: $dark_gray;
vertical-align: middle;
width: 30px;
display: inline-block;
}
.show-pwd {
position: absolute;
right: 10px;
top: 7px;
font-size: 16px;
color: $dark_gray;
cursor: pointer;
user-select: none;
::v-deep.svg-icon {
vertical-align: 0.3em;
}
}
.thirdparty-button {
position: absolute;
right: 0;
bottom: 6px;
}
</style>