register.vue 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215
  1. <!-- 短信注册 -->
  2. <template>
  3. <view>
  4. <!-- 表单项 -->
  5. <uni-forms ref="smsLoginRef" v-model="state.model" :rules="state.rules" validateTrigger="bind" labelWidth="140"
  6. labelAlign="center" class="loginUniForm">
  7. <uni-forms-item name="username" :label="t('account.username')" class="loginUniFormItem" :error-message="state.usernameErrorMsg">
  8. <uni-easyinput :placeholder="t('account.enter_username')" v-model="state.model.username" :inputBorder="false" :clearable="false" @blur="verifyUsername">
  9. <template v-slot:right>
  10. <view v-if="!state.verifyUsername" class="icon"><image style :src="sheep.$url.static('/static/images/shibai.png')" /></view>
  11. <view v-else class="icon"> <image :src="sheep.$url.static('/static/images/chenggong.png')" /></view>
  12. </template>
  13. </uni-easyinput>
  14. </uni-forms-item>
  15. <uni-forms-item name="password" :label="t('user.登陆密码')" class="loginUniFormItem">
  16. <uni-easyinput type="password" :placeholder="t('user.请输入登陆密码')" v-model="state.model.password" :inputBorder="false">
  17. </uni-easyinput>
  18. </uni-forms-item>
  19. <uni-forms-item name="mobile" :label="t('account.phone_number')" class="mobile loginUniFormItem ss-p-t-10" :error-message="state.mobileErrorMsg">
  20. <phoneInternationalInput :verify-username="state.verifyUsername" @input="mobileInput"/>
  21. </uni-forms-item>
  22. <uni-forms-item name="linkId" :label="t('account.link_id')" class="loginUniFormItem" >
  23. <uni-easyinput :placeholder="t('account.enter_link_id')" v-model="state.model.linkId" :inputBorder="false" type="input">
  24. </uni-easyinput>
  25. </uni-forms-item>
  26. </uni-forms>
  27. <view style="display: flex;justify-content: space-between;margin-top: 20rpx;">
  28. <!-- <button class="ss-reset-button forgot-btn" @tap="showAuthModal('resetPassword')">
  29. 忘记密码
  30. </button> -->
  31. <button class="ss-reset-button login-btn-start" @tap="registerSubmit"> {{ t('account.register')}} </button>
  32. </view>
  33. </view>
  34. </template>
  35. <script setup>
  36. import {
  37. ref,
  38. reactive,
  39. unref,
  40. computed
  41. } from 'vue';
  42. import sheep from '@/sheep';
  43. import {
  44. // code,
  45. mobile,
  46. username,
  47. password,
  48. payPassword
  49. } from '@/sheep/validate/form';
  50. import {
  51. showAuthModal,
  52. closeAuthModal,
  53. getSmsCode,
  54. getSmsTimer
  55. } from '@/sheep/hooks/useModal';
  56. import AuthUtil from '@/sheep/api/member/auth';
  57. import phoneInternationalInput from './phone-international-input.vue';
  58. import { t } from '@/locale'
  59. const hasStorageLinkId = ref(!!uni.getStorageSync("linkId"))
  60. const mobileInput = (mobile,mobileError)=>{
  61. // console.log(mobile,mobileError);
  62. state.model.mobile = mobile;
  63. state.mobileErrorMsg = mobileError;
  64. }
  65. // 账号注册数据
  66. const state = reactive({
  67. verifyUsername: false , // 校验用户名是否可用
  68. codeText: '获取验证码',
  69. mobileErrorMsg:'',
  70. usernameErrorMsg:'',
  71. model: {
  72. username:'', // 用户名
  73. password:'', // 密码
  74. mobile: '', // 手机号
  75. // code: '', // 验证码
  76. linkId: uni.getStorageSync("linkId") || undefined, // 邀请码
  77. },
  78. rules: {
  79. username,
  80. password,
  81. linkId: {
  82. rules: [{
  83. required: true,
  84. errorMessage: t('account.enter_link_id')
  85. }]
  86. }
  87. // code,
  88. },
  89. });
  90. const smsLoginRef = ref(null);
  91. const emits = defineEmits(['onConfirm']);
  92. const props = defineProps({
  93. agreeStatus: {
  94. type: Boolean,
  95. default: false,
  96. },
  97. });
  98. let lastUsername = ref('')
  99. async function verifyUsername(e){
  100. const username = e.detail.value;
  101. if(username == '' || username == lastUsername.value){
  102. // 为空或者没改东西,不调校验
  103. return false;
  104. }
  105. lastUsername.value = username
  106. // 提交数据
  107. const { data } = await AuthUtil.verifyUsername(username);
  108. // false就是已经有这个用户名,不可以用。true是没有,可以改
  109. if(data){
  110. state.usernameErrorMsg = ''
  111. state.verifyUsername = data
  112. }else {
  113. state.usernameErrorMsg = t('account.username_exists')
  114. state.verifyUsername = data
  115. }
  116. }
  117. // 注册
  118. async function registerSubmit() {
  119. console.log(state.model)
  120. // 参数校验
  121. const validate = await unref(smsLoginRef)
  122. .validate()
  123. .catch((error) => {
  124. console.log('error: ', error);
  125. });
  126. if (!validate) {
  127. return;
  128. }
  129. if (!props.agreeStatus) {
  130. emits('onConfirm', true)
  131. //onConfirm(true)
  132. sheep.$helper.toast(t('account.please_agree'));
  133. return;
  134. }
  135. // 看缓存中有没有linkId 如果有的话 加入model传给后台 即为绑定
  136. // const linkId = uni.getStorageSync("linkId")
  137. // if (linkId) {
  138. // state.model.linkId = linkId
  139. // }
  140. // else{
  141. // sheep.$helper.toast('您只能通过分享注册');
  142. // return false;
  143. // }
  144. // 提交数据
  145. const {
  146. code
  147. } = await AuthUtil.register(state.model);
  148. if (code === 0) {
  149. closeAuthModal();
  150. }
  151. }
  152. </script>
  153. <style lang="scss" scoped>
  154. @import '../index.scss';
  155. .code-btn-start {
  156. color: #55b774;
  157. border: 1px solid #55b774;
  158. }
  159. .disabled{
  160. border: 1px solid #f7f7f7;
  161. }
  162. .icon{
  163. display:flex;
  164. align-items: center;
  165. margin-right:7rpx
  166. }
  167. .icon image{
  168. width:35rpx;
  169. height:35rpx;
  170. }
  171. .agreement-box {
  172. margin: 20rpx 0;
  173. }
  174. .login-btn-start {
  175. background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
  176. width: 100%;
  177. height: 80rpx;
  178. font-size: 32rpx;
  179. }
  180. .loginUniForm {
  181. border: 1rpx solid #d6d6d6;
  182. padding: 0 15rpx;
  183. border-radius: 10rpx;
  184. }
  185. .loginUniFormItem {
  186. border-bottom: 1rpx solid #d6d6d6;
  187. // padding-bottom: 10rpx;
  188. padding: 10rpx 0;
  189. }
  190. .loginUniFormItem:last-child {
  191. border-bottom: none;
  192. padding-top: 10rpx;
  193. }
  194. ::v-deep .loginUniFormItem .uni-forms-item__inner {
  195. padding-bottom: 0;
  196. }
  197. ::v-deep .loginUniFormItem .uni-error-message {
  198. bottom: -20rpx;
  199. }
  200. </style>