register.vue 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  1. <template>
  2. <view class="register-page">
  3. <navBar name="账号注册" left="0" bgColor="transparent"></navBar>
  4. <view style="height: 20rpx;"></view>
  5. <ZxInput
  6. v-model="form.email"
  7. :placeholder="$t('请输入邮箱账号')"
  8. />
  9. <ZxInput
  10. v-model="form.passwd"
  11. :placeholder="$t('请输入密码')"
  12. isPassword
  13. />
  14. <ZxInput
  15. v-model="form.second_passwd"
  16. :placeholder="$t('请再次输入密码')"
  17. isPassword
  18. />
  19. <view
  20. :class="['agreement-row', checkShakeObj.agreemen && 'shake']"
  21. @tap="isCheckAgreement = !isCheckAgreement"
  22. >
  23. <view :class="['checkbox', isCheckAgreement && 'is-checked']"/>
  24. {{ $t('已阅读并同意') }}
  25. <text class="text" @tap.stop="handleAgreementLink('270')">《{{$t('用户协议')}}》</text>
  26. {{ $t('和') }}<text class="text" @tap.stop="handleAgreementLink('102')">《{{$t('隐私政策')}}》</text>
  27. </view>
  28. <view :class="['zx-form-btn', isSubmt && 'is-submit']" @tap="submit">
  29. {{ $t('立即注册') }}
  30. </view>
  31. <NoticeDialog
  32. :title="$t('注册邮件已发送')"
  33. :btnText="$t('去登录')"
  34. type="register"
  35. @close='close'
  36. :email="form.email"
  37. :text="$t(`我们已向 <span>${this.form.email}</span> 发送注册邮件,请您登录邮箱点击链接完成注册。`)"
  38. v-model="isSendSucceed"
  39. />
  40. </view>
  41. </template>
  42. <script>
  43. import { emailRegex } from '@/common/constant'
  44. import NoticeDialog from '@/component/comPopup/Notice.vue'
  45. import ZxInput from './components/ZxInput.vue'
  46. const config = require('@/common/config.js');
  47. const http = require('@/common/http.js');
  48. export default {
  49. components: {
  50. NoticeDialog,
  51. ZxInput
  52. },
  53. data() {
  54. return {
  55. isCheckAgreement: false,
  56. isSendSucceed: false,
  57. form: {},
  58. emailFocus: false,
  59. checkShakeObj: {
  60. agreemen: false
  61. }
  62. }
  63. },
  64. computed: {
  65. isSubmt({ form }) {
  66. return form.email && form.passwd && form.second_passwd
  67. }
  68. },
  69. methods: {
  70. close(){
  71. uni.navigateBack({
  72. delta:1
  73. })
  74. },
  75. handleAgreementLink(id) {
  76. uni.navigateTo({
  77. url: `/pages/contract/contract?contract_id=${id}`
  78. })
  79. },
  80. _applyCheck(field, message) {
  81. this.checkShakeObj[field] = true;
  82. setTimeout(() => {
  83. this.checkShakeObj[field] = false;
  84. }, 500)
  85. uni.showToast({ title: message, icon: 'none' })
  86. },
  87. validatePassword(password) {
  88. const regex = /^(?=.*[A-Za-z])(?=.*\d)[A-Za-z0-9]{8,18}$/;
  89. return regex.test(password);
  90. },
  91. submit() {
  92. if (!this.isCheckAgreement) {
  93. this._applyCheck('agreemen', this.$t('请勾选用户协议和隐私政策'))
  94. return
  95. }
  96. if (!emailRegex.test(this.form.email)) {
  97. uni.showToast({ title: this.$t('请输入有效的邮箱地址'), icon: 'none' })
  98. return
  99. }
  100. if(!this.validatePassword(this.form.passwd) || !this.validatePassword(this.form.second_passwd)){
  101. uni.showToast({ title: this.$t('请输入8-18位密码,包含字母数字'), icon: 'none' })
  102. return
  103. }
  104. if (this.form.passwd !== this.form.second_passwd) {
  105. uni.showToast({ title: this.$t('两次输入的密码不一致'), icon: 'none' })
  106. return
  107. }
  108. http.postApi(config.API_REGISTER_EMAIL, {
  109. ...this.form
  110. }, res => {
  111. const { msg: title } = res.body
  112. if (res.succeed) {
  113. uni.showToast({ title:this.$t('注册邮件发送成功'), icon: 'none' })
  114. this.isSendSucceed = true
  115. } else {
  116. uni.showToast({ title, icon: 'none' })
  117. }
  118. })
  119. },
  120. }
  121. }
  122. </script>
  123. <style lang="scss" scoped>
  124. @import "@/libs/css/layout.scss";
  125. .register-page {
  126. width: 100%;
  127. background: #F1F3F4;
  128. min-height: 100vh;
  129. padding: 0 32rpx;
  130. .agreement-row {
  131. margin: 2rpx 0 64rpx;
  132. display: flex;
  133. align-items: center;
  134. font-family: PingFangSC, PingFang SC;
  135. font-weight: 400;
  136. font-size: 28rpx;
  137. color: #060809;
  138. &.shake {
  139. animation: shake 0.2s ease-in-out 0s 6;
  140. }
  141. .checkbox {
  142. width: 32rpx;
  143. height: 32rpx;
  144. margin-right: 16rpx;
  145. background: url('https://qiniu.bms16.com/Fh5aqDCxGKxEEVfxIQD9u6Ym9OLk');
  146. background-size: 100%;
  147. &.is-checked {
  148. background: url('https://qiniu.bms16.com/FhAi08ilxiBqUhFezVF9H9ff2VMm');
  149. background-size: 100%;
  150. }
  151. }
  152. .text {
  153. font-family: PingFangSC, PingFang SC;
  154. font-weight: 400;
  155. font-size: 28rpx;
  156. color: #0A59F7;
  157. &:active {
  158. opacity: .6;
  159. }
  160. }
  161. }
  162. }
  163. </style>