register.vue 4.7 KB

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