register.vue 4.8 KB

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