register.vue 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244
  1. <template>
  2. <view class="register-container">
  3. <JHeader title="" width="50" height="50" style="padding: 24rpx 0 0;"></JHeader>
  4. <view class="titleBox">
  5. <p class="bigTitle">填写注册信息</p>
  6. <p class="tips">请仔细填写以下信息,以免后期登陆异常</p>
  7. </view>
  8. <view class="formBox">
  9. <tui-form ref="form" :show-message="false">
  10. <view class="formItem">
  11. <tui-input
  12. v-model="registerQuery.phone" placeholder-class="inputs" border-color="#EA5B1D" placeholder="请输入电话号码"
  13. :border-top="false" color="#222229" clearable size="34"
  14. ></tui-input>
  15. </view>
  16. <view class="formItem">
  17. <tui-input
  18. v-model="registerQuery.verificationCode" placeholder-style="color: #f3c1c4;font-size: 32rpx;"
  19. background-color="transparent" :border-top="false" border-color="#EA5B1D" label-color="#ffffff"
  20. placeholder="请输入验证码" color="#222229"
  21. >
  22. <template #right>
  23. <tui-countdown-verify
  24. ref="refRegisterVerify" width="188rpx" height="48rpx" border-width="0"
  25. text="获取验证码"
  26. :size="30" color="#EF530E" @send="handleSendVerify"
  27. ></tui-countdown-verify>
  28. </template>
  29. </tui-input>
  30. </view>
  31. <view class="formItem">
  32. <tui-input
  33. v-model="registerQuery.password" placeholder-class="inputs" type="password" border-color="#EA5B1D"
  34. placeholder="请输入密码" :border-top="false" color="#222229" clearable
  35. size="34"
  36. ></tui-input>
  37. </view>
  38. <view class="formItem">
  39. <tui-input
  40. v-model="registerQuery.newPassword" placeholder-class="inputs" type="password"
  41. border-color="#EA5B1D" placeholder="请再次确认密码" :border-top="false" color="#222229"
  42. clearable
  43. size="34"
  44. ></tui-input>
  45. </view>
  46. </tui-form>
  47. <view class="tips">密码长度8-16位,必须同时含有字母和数字</view>
  48. </view>
  49. <button
  50. class="loginBtn"
  51. :class="{ disbleds: !!(registerQuery.password && registerQuery.newPassword && registerQuery.phone && registerQuery.verificationCode) }"
  52. @click="addAcount"
  53. >
  54. 确定
  55. </button>
  56. <view
  57. style="display: flex;justify-content: center;align-items: center;margin-top: 50rpx;padding: 0rpx 40rpx;font-size: 28rx;color: #888889;"
  58. >
  59. <radio
  60. style="transform:scale(0.8)" color="#CE2601" :checked="isReadAgreement"
  61. @click="isReadAgreement = !isReadAgreement"
  62. />
  63. <view>
  64. 我已阅读并同意<text
  65. style="color: #222229;"
  66. @click="go('pages/service-agreement/service-agreement')"
  67. >
  68. 《用户服务协议》
  69. </text>以及<text
  70. style="color: #222229;"
  71. @click="go('pages/service-agreement/privacy-policy')"
  72. >
  73. 《隐私政策》
  74. </text>
  75. </view>
  76. </view>
  77. <tui-toast ref="toast"></tui-toast>
  78. <tui-modal :show="hasRegister" custom fade-i :button="[]" @cancel="hasRegister = false">
  79. <view style="padding: 28rpx 0;text-align: center;">
  80. <image style="width: 240rpx;height: 144rpx;" src="../../static/images/icon/acount.png"></image>
  81. <view
  82. style="margin-top: 46rpx;font-size: 36rpx;font-weight: normal;line-height: 52rpx;text-align: center;color: #222229;"
  83. >
  84. 注册完成
  85. </view>
  86. <view
  87. style="margin-top: 18rpx;font-size: 28fpx;font-weight: 350;line-height: 40fpx;text-align: center;color: #888889;"
  88. >
  89. 您已完成注册,请前往首页
  90. </view>
  91. <button
  92. style="width: 484rpx;height: 80rpx;border-radius: 8rpx;background: #EF530E;color: #fff;line-height: 80rpx;margin-top: 80rpx;"
  93. @click="$switchTab('/pages/index/index')"
  94. >
  95. 立即跳转
  96. </button>
  97. </view>
  98. </tui-modal>
  99. </view>
  100. </template>
  101. <script>
  102. import { updatePhoneLoginRegisterApi, getVerifyCodeApi } from '../../api/anotherTFInterface'
  103. export default {
  104. name: 'Register',
  105. data() {
  106. return {
  107. registerQuery: {
  108. password: '',
  109. newPassword: '',
  110. phone: '',
  111. verificationCode: ''
  112. },
  113. isReadAgreement: false,
  114. hasRegister: false
  115. }
  116. },
  117. methods: {
  118. // 获取验证码
  119. handleSendVerify() {
  120. if (!this.registerQuery.phone) {
  121. this.$refs.refRegisterVerify.reset()
  122. return this.$showToast('请填写手机号')
  123. }
  124. if (!/^1[3-9]\d{9}$/.test(this.registerQuery.phone)) {
  125. this.$refs.refRegisterVerify.reset()
  126. return this.$showToast('请输入正确的手机号')
  127. }
  128. getVerifyCodeApi({ phone: this.registerQuery.phone })
  129. .then((res) => {
  130. this.$refs.refRegisterVerify.success()
  131. this.$showToast('发送成功,请注意查看手机短信')
  132. })
  133. .catch(() => {
  134. this.$refs.refRegisterVerify.reset()
  135. })
  136. },
  137. addAcount() {
  138. this.$refs.form.validate(this.registerQuery, [
  139. {
  140. name: 'phone',
  141. rule: ['required', 'isMobile'],
  142. msg: ['请输入手机号', '请输入正确的手机号']
  143. },
  144. {
  145. name: 'verificationCode',
  146. rule: [ 'required' ],
  147. msg: [ '请输入验证码' ]
  148. },
  149. {
  150. name: 'password',
  151. rule: ['required', 'isEnAndNo'],
  152. msg: ['请输入密码', '密码为8~20位英文和数字组合']
  153. },
  154. {
  155. name: 'newPassword',
  156. rule: ['required', 'isSame:password'],
  157. msg: ['请再次确认密码', '两次密码不一致']
  158. }
  159. ])
  160. .then(() => {
  161. if (!this.isReadAgreement) return this.$showToast('请先同意《用户服务协议》以及《隐私政策》')
  162. updatePhoneLoginRegisterApi({
  163. type: 1,
  164. phone: this.registerQuery.phone,
  165. verificationCode: this.registerQuery.verificationCode,
  166. password: this.registerQuery.password
  167. }).then((res) => {
  168. this.$store.dispatch('auth/LoginAfterAction', { type: 'phone', data: res.data })
  169. this.hasRegister = true
  170. })
  171. })
  172. .catch((e) => {
  173. this.$showToast(JSON.stringify(e.errorMsg))
  174. })
  175. }
  176. }
  177. }
  178. </script>
  179. <style lang="less" scoped>
  180. .register-container {
  181. position: relative;
  182. min-height: 100vh;
  183. box-sizing: border-box;
  184. .disbleds {
  185. background-color: #EF530E !important;
  186. }
  187. .titleBox {
  188. width: 100vw;
  189. box-sizing: border-box;
  190. padding: 64rpx;
  191. .bigTitle {
  192. font-family: Source Han Sans;
  193. font-size: 64rpx;
  194. font-weight: normal;
  195. line-height: 90rpx;
  196. color: #303030;
  197. }
  198. .tips {
  199. font-family: Source Han Sans;
  200. font-size: 28rpx;
  201. font-weight: normal;
  202. line-height: 40rpx;
  203. color: #303030;
  204. }
  205. }
  206. .formBox {
  207. width: 100vw;
  208. box-sizing: border-box;
  209. padding: 0rpx 40rpx;
  210. .formItem {
  211. height: 120rpx;
  212. }
  213. .tips {
  214. margin-left: 26rpx;
  215. font-family: Source Han Sans;
  216. font-size: 24rpx;
  217. font-weight: normal;
  218. line-height: 32rpx;
  219. color: #646466;
  220. }
  221. }
  222. .loginBtn {
  223. margin-top: 64rpx;
  224. width: 622rpx;
  225. height: 96rpx;
  226. border-radius: 16rpx;
  227. background: #C6C7CB;
  228. color: #FFFFFF;
  229. font-size: 32rpx;
  230. }
  231. }
  232. </style>