个人注册

dev_202412
yujialong 8 months ago
parent 46b0be32f5
commit 123be6ef05
  1. 1
      src/api/index.js
  2. 176
      src/pages/account/login/index.vue

@ -26,6 +26,7 @@ export default {
forgotPreVerification: `users/users/user/forgotPreVerification`, forgotPreVerification: `users/users/user/forgotPreVerification`,
forgotPassword: `users/users/user/forgotPassword`, forgotPassword: `users/users/user/forgotPassword`,
logout: `users/users/user/logout`, logout: `users/users/user/logout`,
quickRegistration: `users/users/user/quickRegistration`,
// 阿里云文件/视频管理 // 阿里云文件/视频管理
getPlayAuth: `nakadai/nakadai/oss/getPlayAuth`, // 获取播放凭证 getPlayAuth: `nakadai/nakadai/oss/getPlayAuth`, // 获取播放凭证

@ -30,9 +30,9 @@
<el-form-item prop="code"> <el-form-item prop="code">
<label class="label code"></label> <label class="label code"></label>
<div class="ver-code"> <div class="ver-code">
<el-input v-model="form.code" placeholder="请输入验证码" maxlength="6" :disabled="verFormEnable" <el-input v-model="form.code" placeholder="请输入验证码" maxlength="6" :disabled="!verFormEnable"
@keyup.enter.native="submit"></el-input> @keyup.enter.native="submit"></el-input>
<el-button type="text" @click="sendPhoneCodeLogin" :disabled="phoneDisabledLogin || verFormEnable">{{ <el-button type="text" @click="sendPhoneCodeLogin" :disabled="phoneDisabledLogin || !verFormEnable">{{
phoneBtnTextLogin phoneBtnTextLogin
}} }}
</el-button> </el-button>
@ -54,7 +54,7 @@
</template> </template>
<div class="bottom"> <div class="bottom">
<el-link :underline="false" type="primary" @click="switchType">{{ verCodeLogin ? '密码' : '验证码' }}登录</el-link> <el-link :underline="false" type="primary" @click="switchType">{{ verCodeLogin ? '密码' : '验证码' }}登录</el-link>
<!-- <el-link :underline="false" type="primary" @click="toAccount">没有账号点击申请</el-link> --> <el-link :underline="false" type="primary" @click="toAccount">没有账号点击申请</el-link>
</div> </div>
<el-button class="submit" type="primary" @click="submit">登录</el-button> <el-button class="submit" type="primary" @click="submit">登录</el-button>
</el-form> </el-form>
@ -145,66 +145,48 @@
</el-form-item> </el-form-item>
<el-form-item prop="code" label="验证码"> <el-form-item prop="code" label="验证码">
<div class="ver-code"> <div class="ver-code">
<el-input v-model="pwForm.code" placeholder="请输入验证码" maxlength="6" :disabled="formEnable"></el-input> <el-input v-model="pwForm.code" placeholder="请输入验证码" maxlength="6" :disabled="!diaClientExist"></el-input>
<el-button style="top: 1px" type="text" @click="sendCodePw" :disabled="phoneDisabled || formEnable">{{ <el-button style="top: 1px" type="text" @click="sendCodePw" :disabled="phoneDisabled || !diaClientExist">{{
phoneBtnText }} phoneBtnText }}
</el-button> </el-button>
</div> </div>
</el-form-item> </el-form-item>
<el-form-item prop="newPassword" label="登录密码"> <el-form-item prop="newPassword" label="登录密码">
<el-input placeholder="请输入登录密码" type="password" maxlength="6" v-model="pwForm.newPassword" <el-input placeholder="请输入登录密码" type="password" maxlength="6" v-model="pwForm.newPassword"
:disabled="formEnable"></el-input> :disabled="!diaClientExist"></el-input>
</el-form-item> </el-form-item>
<el-form-item prop="newPasswordTwo" label="确认登录密码"> <el-form-item prop="newPasswordTwo" label="确认登录密码">
<el-input placeholder="请再次输入登录密码" type="password" maxlength="6" v-model="pwForm.newPasswordTwo" <el-input placeholder="请再次输入登录密码" type="password" maxlength="6" v-model="pwForm.newPasswordTwo"
:disabled="formEnable"></el-input> :disabled="!diaClientExist"></el-input>
</el-form-item> </el-form-item>
</el-form> </el-form>
<span slot="footer" class="dialog-footer"> <span slot="footer" class="dialog-footer">
<el-button v-if="!formEnable" size="small" type="primary" @click="pwSubmit">确定</el-button> <el-button v-if="diaClientExist" size="small" type="primary" @click="pwSubmit">确定</el-button>
<el-button size="small" @click="resetPwVisible = false">取消</el-button> <el-button size="small" @click="resetPwVisible = false">取消</el-button>
</span> </span>
</el-dialog> </el-dialog>
<el-dialog title="账号申请" :visible.sync="accountVisible" :close-on-click-modal="false" width="500px" <el-dialog title="欢迎注册" :visible.sync="accountVisible" :close-on-click-modal="false" width="500px">
@close="accountClose"> <el-form class="dia-form" ref="accountForm" label-width="80px" :model="accountForm" :rules="accountRules">
<el-form class="dia-form" ref="accountForm" label-width="110px" :model="accountForm" :rules="accountRules"> <el-form-item prop="phoneOrEmail" label="手机号">
<el-form-item prop="schoolId" label="所属院校"> <el-input placeholder="请输入手机号" maxlength="11" v-model.trim="accountForm.phoneOrEmail"
<el-select class="w-100" v-model="accountForm.schoolId" filterable placeholder="请选择院校" @change="schoolChange"> @input="checkAccountByPhoneReg"></el-input>
<el-option v-for="(item, i) in schoolList" :key="i" :label="item.schoolName" <div v-if="regClientExist" class="flex a-center text-red">
:value="item.schoolId"></el-option> 该手机号已注册您可直接点
</el-select> <el-link class="m-l-5" :underline="false" type="primary" @click="accountVisible = false">此处登录</el-link>
</el-form-item> </div>
<el-form-item prop="workNumber" label="学号">
<el-input placeholder="申请后无法修改,请确认填写正确" v-model="accountForm.workNumber"
@change="workNumberChange"></el-input>
</el-form-item>
<el-form-item prop="userName" label="姓名">
<el-input placeholder="请输入姓名" v-model="accountForm.userName" :disabled="formEnable"></el-input>
</el-form-item>
<el-form-item prop="phone" label="手机号">
<el-input placeholder="请输入手机号" maxlength="11" v-model.trim="accountForm.phone"
:disabled="formEnable"></el-input>
</el-form-item> </el-form-item>
<el-form-item prop="code" label="验证码"> <el-form-item prop="code" label="验证码">
<div class="ver-code"> <div class="ver-code">
<el-input v-model="accountForm.code" placeholder="请输入验证码" maxlength="6" :disabled="formEnable"></el-input> <el-input v-model="accountForm.code" placeholder="请输入验证码" maxlength="6" :disabled="regDisable"></el-input>
<el-button style="top: 1px" type="text" @click="sendCode" :disabled="phoneDisabled && formEnable">{{ <el-button style="top: 1px" type="text" @click="sendCode" :disabled="phoneDisabled || regDisable">{{
phoneBtnText }} phoneBtnText }}
</el-button> </el-button>
</div> </div>
</el-form-item> </el-form-item>
<el-form-item prop="password" label="登录密码">
<el-input placeholder="请输入登录密码" type="password" maxlength="6" v-model="accountForm.password"
:disabled="formEnable"></el-input>
</el-form-item>
<el-form-item prop="rePassword" label="确认登录密码">
<el-input placeholder="请再次输入登录密码" type="password" maxlength="6" v-model="accountForm.rePassword"
:disabled="formEnable"></el-input>
</el-form-item>
</el-form> </el-form>
<span slot="footer" class="dialog-footer"> <span slot="footer" class="dialog-footer">
<el-button v-if="!formEnable" size="small" type="primary" @click="accountSubmit">申请</el-button> <el-button v-if="!regDisable" size="small" type="primary" @click="accountSubmit">立即注册</el-button>
<el-button size="small" @click="accountVisible = false">取消</el-button> <el-button size="small" @click="accountVisible = false">取消</el-button>
</span> </span>
</el-dialog> </el-dialog>
@ -275,7 +257,7 @@ export default {
password: [{ required: true, message: "请输入密码", trigger: "blur" }], password: [{ required: true, message: "请输入密码", trigger: "blur" }],
code: [{ required: true, message: "请输入验证码", trigger: "blur" }] code: [{ required: true, message: "请输入验证码", trigger: "blur" }]
}, },
verFormEnable: true, verFormEnable: false,
verCodeLogin: false, verCodeLogin: false,
phoneDisabledLogin: false, phoneDisabledLogin: false,
phoneTimerLogin: null, phoneTimerLogin: null,
@ -299,31 +281,21 @@ export default {
infos: [], infos: [],
accountVisible: false, accountVisible: false,
formEnable: true, regDisable: true,
regClientExist: false,
accountForm: { accountForm: {
schoolId: '',
account: '',
code: '', code: '',
password: '', phoneOrEmail: '',
rePassword: '',
phone: '',
userName: '',
workNumber: '',
uniqueIdentification: Date.now()
}, },
accountRules: { accountRules: {
schoolId: [{ required: true, message: "请选择所属院校", trigger: "change" }], phoneOrEmail: [{ required: true, message: "请输入手机号/邮箱", trigger: "blur" }],
userName: [{ required: true, message: "请输入姓名", trigger: "blur" }],
workNumber: [{ required: true, validator: workNumberPass, trigger: "blur" }],
phone: [{ required: true, validator: phonePass, trigger: "blur" }],
password: [{ required: true, message: "请输入密码", trigger: "blur" }],
rePassword: [{ required: true, message: "请再次输入密码", trigger: "blur" }],
code: [{ required: true, message: "请输入验证码", trigger: "blur" }] code: [{ required: true, message: "请输入验证码", trigger: "blur" }]
}, },
buyVisible: false, buyVisible: false,
resetPwVisible: false, resetPwVisible: false,
diaClientExist: false,
pwForm: { pwForm: {
code: '', code: '',
newPassword: '', newPassword: '',
@ -516,7 +488,7 @@ export default {
newPasswordTwo: '', newPasswordTwo: '',
phoneOrEmail: '', phoneOrEmail: '',
} }
this.formEnable = true this.diaClientExist = false
this.resetPwVisible = true this.resetPwVisible = true
}, },
@ -543,16 +515,15 @@ export default {
}) })
}, },
// // type01
async checkAccountByPhone (val, isResetPw) { async checkAccountByPhone (val, type) {
if (!this.phoneReg.test(val) && !this.mailReg.test(val)) return false if (!this.phoneReg.test(val) && !this.mailReg.test(val)) return false
try { try {
await this.$get(`${this.api.forgotPreVerification}?phoneOrEmail=${val}&platform=${Setting.platformId}`) const { message } = await this.$get(`${this.api.forgotPreVerification}?phoneOrEmail=${val}&platform=${Setting.platformId}`)
this[isResetPw ? 'formEnable' : 'verFormEnable'] = false const exist = message === 'success' //
} catch (e) { this[type ? 'diaClientExist' : 'verFormEnable'] = exist
this.formEnable = true } catch (e) { }
}
}, },
// //
switchType () { switchType () {
@ -560,74 +531,51 @@ export default {
this.$refs.form.clearValidate() this.$refs.form.clearValidate()
this.handleRule() this.handleRule()
}, },
//
async sendCode () {
const { phoneOrEmail } = this.accountForm
//
if (!this.verifyPhone(phoneOrEmail)) return false
const { message } = await this.$post(`${this.api.sendPhoneVerificationCode}?phoneOrEmail=${phoneOrEmail}&loginOrBind=1&platform=6`)
Util.successMsg(message)
this.phoneCountdown()
},
// //
toAccount () { toAccount () {
this.accountForm = {
code: '',
phoneOrEmail: '',
}
this.regDisable = true
this.regClientExist = false
this.accountVisible = true this.accountVisible = true
}, },
// //
workNumberChange () { async checkAccountByPhoneReg (val) {
const form = this.accountForm if (!this.phoneReg.test(val) && !this.mailReg.test(val)) return false
form.schoolId && form.workNumber && this.$get(`${this.api.enquireAboutSchoolStudents}?schoolId=${form.schoolId}&workNumber=${form.workNumber}&applyFor=1`).then(({ account }) => {
if (account) this.form = account
this.formEnable = !!account
}).catch(res => {
this.formEnable = true
})
},
//
schoolChange (schoolId) {
this.$get(this.api.getCustomerBySchoolId, {
schoolId
}).then(res => {
if (!res) {
this.accountVisible = false
this.buyVisible = true
}
}).catch(res => { })
},
// try {
sendCode () { const { message } = await this.$get(`${this.api.forgotPreVerification}?phoneOrEmail=${val}&platform=6`)
const { phone } = this.accountForm const exist = message === 'success' //
// this.regDisable = !exist
phone && this.$get(`${this.api.checkPhoneOrEmailExist}?phone=${phone}&type=1&email=`).then(res => { this.regClientExist = exist
if (res) return Util.errorMsg('手机号已存在,请更换手机号!') } catch (e) { }
if (!this.verifyPhone(phone)) return false
this.$post(`${this.api.sendPhoneVerificationCode}?phoneOrEmail=${phone}&loginOrBind=1&platform=${Setting.platformId}`).then(({ message }) => {
Util.successMsg(message)
this.phoneCountdown()
}).catch(res => { })
}).catch(res => { })
}, },
// //
accountSubmit () { accountSubmit () {
this.$refs.accountForm.validate(valid => { this.$refs.accountForm.validate(valid => {
if (valid) { if (valid) {
const form = this.accountForm const form = this.accountForm
if (form.password !== form.rePassword) return Util.errorMsg('两次输入的密码不一致,请重新输入!') form.platform = 6
// id-id-schoolId-workNumber this.$post(this.api.quickRegistration, form).then(res => {
form.account = `${Setting.platformId}-1-${form.schoolId}-${form.workNumber}`
this.$post(this.api.studentAccountApplication, form).then(res => {
this.accountVisible = false this.accountVisible = false
Util.successMsg('账号申请已提交,需管理员审核,请10分钟后再登录') Util.successMsg('注册成功!')
}).catch(res => { }) }).catch(res => { })
} }
}) })
}, },
//
accountClose () {
this.accountForm = {
schoolId: '',
account: '',
code: '',
password: '',
rePassword: '',
phone: '',
userName: '',
workNumber: '',
uniqueIdentification: Date.now()
}
},
// //
phoneCountdownLogin () { phoneCountdownLogin () {

Loading…
Cancel
Save