123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174 |
- <template>
- <view class="register-page">
- <navBar :name="$t('账号注册')" left="0" bgColor="transparent"></navBar>
- <view style="height: 20rpx;"></view>
- <ZxInput
- v-model="form.email"
- :placeholder="$t('请输入邮箱账号')"
- />
- <ZxInput
- v-model="form.passwd"
- :placeholder="$t('请输入密码')"
- isPassword
- />
- <ZxInput
- v-model="form.second_passwd"
- :placeholder="$t('请再次输入密码')"
- isPassword
- />
- <view
- :class="['agreement-row', checkShakeObj.agreemen && 'shake']"
- @tap="isCheckAgreement = !isCheckAgreement"
- >
- <view :class="['checkbox', isCheckAgreement && 'is-checked']"/>
- {{ $t('已阅读并同意') }}
- <text class="text" @tap.stop="handleAgreementLink('270')">《{{$t('用户协议')}}》</text>
- {{ $t('和') }}<text class="text" @tap.stop="handleAgreementLink('102')">《{{$t('隐私政策')}}》</text>
- </view>
- <view :class="['zx-form-btn', isSubmt && 'is-submit']" @tap="submit">
- {{ $t('立即注册') }}
- </view>
- <NoticeDialog
- :title="$t('注册邮件已发送')"
- :btnText="$t('去登录')"
- type="register"
- @close='close'
- :email="form.email"
- :text="`${ $t('我们已向') } <span>${this.form.email}</span> ${ $t('发送注册邮件,请您登录邮箱点击链接完成注册。') }`"
- v-model="isSendSucceed"
- />
- </view>
- </template>
- <script>
- import { emailRegex } from '@/common/constant'
- import NoticeDialog from '@/component/comPopup/Notice.vue'
- import ZxInput from './components/ZxInput.vue'
- const config = require('@/common/config.js');
- const http = require('@/common/http.js');
- export default {
- components: {
- NoticeDialog,
- ZxInput
- },
- data() {
- return {
- isCheckAgreement: false,
- isSendSucceed: false,
- form: {},
- emailFocus: false,
- checkShakeObj: {
- agreemen: false
- }
- }
- },
- computed: {
-
- isSubmt({ form }) {
- return form.email && form.passwd && form.second_passwd
- }
- },
- methods: {
-
- close(){
- uni.navigateBack({
- delta:1
- })
- },
- handleAgreementLink(id) {
- uni.navigateTo({
- url: `/pages/contract/contract?contract_id=${id}`
- })
- },
- _applyCheck(field, message) {
- this.checkShakeObj[field] = true;
- setTimeout(() => {
- this.checkShakeObj[field] = false;
- }, 500)
- uni.showToast({ title: message, icon: 'none' })
- },
- validatePassword(password) {
- const regex = /^(?=.*[A-Za-z])(?=.*\d)[A-Za-z0-9]{8,18}$/;
- return regex.test(password);
- },
- submit() {
- if (!this.isCheckAgreement) {
- this._applyCheck('agreemen', this.$t('请勾选用户协议和隐私政策'))
- return
- }
- if (!emailRegex.test(this.form.email)) {
- uni.showToast({ title: this.$t('请输入有效的邮箱地址'), icon: 'none' })
- return
- }
-
- if(!this.validatePassword(this.form.passwd) || !this.validatePassword(this.form.second_passwd)){
- uni.showToast({ title: this.$t('请输入8-18位密码,包含字母数字'), icon: 'none' })
- return
- }
-
- if (this.form.passwd !== this.form.second_passwd) {
- uni.showToast({ title: this.$t('两次输入的密码不一致'), icon: 'none' })
- return
- }
- http.postApi(config.API_REGISTER_EMAIL, {
- ...this.form
- }, res => {
- const { msg: title } = res.body
- if (res.succeed) {
- uni.showToast({ title:this.$t('注册邮件发送成功'), icon: 'none' })
- this.isSendSucceed = true
- } else {
- uni.showToast({ title, icon: 'none' })
- }
- })
- },
- }
- }
- </script>
- <style lang="scss" scoped>
- @import "@/libs/css/layout.scss";
- .register-page {
- width: 100%;
- background: #F1F3F4;
- min-height: 100vh;
- padding: 0 32rpx;
- .agreement-row {
- margin: 2rpx 0 64rpx;
- display: flex;
- align-items: center;
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- font-size: 28rpx;
- color: #060809;
- &.shake {
- animation: shake 0.2s ease-in-out 0s 6;
- }
- .checkbox {
- width: 32rpx;
- height: 32rpx;
- margin-right: 16rpx;
- background: url('https://qiniu.bms16.com/Fh5aqDCxGKxEEVfxIQD9u6Ym9OLk');
- background-size: 100%;
- &.is-checked {
- background: url('https://qiniu.bms16.com/FhAi08ilxiBqUhFezVF9H9ff2VMm');
- background-size: 100%;
- }
- }
- .text {
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- font-size: 28rpx;
- color: #0A59F7;
- &:active {
- opacity: .6;
- }
- }
- }
-
- }
- </style>
|