register.vue 4.7 KB

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