login.vue 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241
  1. <!-- 微信公众号的登录回调页 -->
  2. <template>
  3. <!-- 空登陆页 -->
  4. <view />
  5. <su-popup :show="state.isPopup" round="10" :showClose="false" @close="closeAuthModal">
  6. <view>
  7. <view class="head-box ">
  8. <view class="ss-flex ss-m-b-20">
  9. <view class="isActive head-title">
  10. 您首次登录,请输入手机号验证
  11. </view>
  12. </view>
  13. </view>
  14. <!-- 表单项 -->
  15. <uni-forms ref="smsLoginRef" v-model="state.model" :rules="state.rules" validateTrigger="bind" labelWidth="140"
  16. labelAlign="center" class="loginUniForm">
  17. <uni-forms-item name="mobile" label="手机号" class="loginUniFormItem">
  18. <uni-easyinput placeholder="请输入手机号" v-model="state.model.mobile" :inputBorder="false" type="number">
  19. <template v-slot:right>
  20. <button class="ss-reset-button code-btn code-btn-start" :disabled="state.isMobileEnd"
  21. :class="{ 'code-btn-end': state.isMobileEnd }"
  22. @tap="getSmsCode('smsLogin', state.model.mobile)">
  23. {{ getSmsTimer('smsLogin') }}
  24. </button>
  25. </template>
  26. </uni-easyinput>
  27. </uni-forms-item>
  28. <uni-forms-item name="code" label="验证码" class="loginUniFormItem">
  29. <uni-easyinput placeholder="请输入验证码" v-model="state.model.code" :inputBorder="false" type="number"
  30. maxlength="4">
  31. </uni-easyinput>
  32. </uni-forms-item>
  33. </uni-forms>
  34. <view style="display: flex;justify-content: space-between;margin-top: 20rpx;">
  35. <button class="ss-reset-button login-btn-start" @tap="OfficialEnterLogin"> 继续登录 </button>
  36. </view>
  37. </view>
  38. </su-popup>
  39. </template>
  40. <script setup>
  41. import {
  42. ref,
  43. reactive,
  44. unref,
  45. computed
  46. } from 'vue';
  47. import sheep from '@/sheep';
  48. import {
  49. onLoad
  50. } from '@dcloudio/uni-app';
  51. import {
  52. showAuthModal,
  53. closeAuthModal,
  54. getSmsCode,
  55. getSmsTimer
  56. } from '@/sheep/hooks/useModal';
  57. import {
  58. code,
  59. mobile
  60. } from '@/sheep/validate/form';
  61. import AuthUtil from '@/sheep/api/member/auth';
  62. const smsLoginRef = ref(null);
  63. // 数据
  64. const state = reactive({
  65. isPopup:true,
  66. loginReqVO:{
  67. type:31,
  68. code:"",
  69. state:"",
  70. },
  71. isMobileEnd: false, // 手机号输入完毕
  72. codeText: '获取验证码',
  73. model: {
  74. mobile: '', // 手机号
  75. code: '', // 验证码
  76. scene: 1
  77. },
  78. rules: {
  79. code,
  80. mobile,
  81. },
  82. });
  83. // 短信登录
  84. async function OfficialEnterLogin() {
  85. // 参数校验
  86. const validate = await unref(smsLoginRef)
  87. .validate()
  88. .catch((error) => {
  89. console.log('error: ', error);
  90. });
  91. if (!validate) {
  92. return;
  93. }
  94. // 提交数据
  95. const {
  96. code
  97. } = await AuthUtil.OfficialEnterLogin(state.model,state.loginReqVO);
  98. if (code === 0) {
  99. closeAuthModal();
  100. // 检测 H5 登录回调
  101. let returnUrl = uni.getStorageSync('returnUrl');
  102. if (returnUrl) {
  103. uni.removeStorage('returnUrl');
  104. location.replace(returnUrl);
  105. } else {
  106. uni.switchTab({
  107. url: '/',
  108. });
  109. }
  110. }
  111. }
  112. onLoad(async (options) => {
  113. // #ifdef H5
  114. // 将 search 参数赋值到 options 中,方便下面解析
  115. new URLSearchParams(location.search).forEach((value, key) => {
  116. options[key] = value;
  117. });
  118. const event = options.event;
  119. const code = options.code;
  120. const state = options.state;
  121. state.loginReqVO.code = options.code
  122. state.loginReqVO.state = options.state
  123. console.log("state.loginReqVO",state.loginReqVO)
  124. if (event === 'login') { // 场景一:登录
  125. const res = await sheep.$platform.useProvider().login(code, state)
  126. if(!res){
  127. state.isPopup = true
  128. return false
  129. }
  130. } else if (event === 'bind') { // 场景二:绑定
  131. sheep.$platform.useProvider().bind(code, state);
  132. }
  133. // 检测 H5 登录回调
  134. let returnUrl = uni.getStorageSync('returnUrl');
  135. if (returnUrl) {
  136. uni.removeStorage('returnUrl');
  137. location.replace(returnUrl);
  138. } else {
  139. uni.switchTab({
  140. url: '/',
  141. });
  142. }
  143. // #endif
  144. });
  145. </script>
  146. <style lang="scss" scoped>
  147. .login-btn-start {
  148. width: 158rpx;
  149. height: 56rpx;
  150. line-height: normal;
  151. background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
  152. border-radius: 28rpx;
  153. font-size: 26rpx;
  154. font-weight: 500;
  155. color: #fff;
  156. }
  157. .login-wrap {
  158. padding: 50rpx 34rpx;
  159. min-height: 500rpx;
  160. background-color: #fff;
  161. border-radius: 20rpx 20rpx 0 0;
  162. }
  163. .code-btn-start {
  164. width: 160rpx;
  165. height: 56rpx;
  166. line-height: normal;
  167. border: 2rpx solid var(--ui-BG-Main);
  168. border-radius: 28rpx;
  169. font-size: 26rpx;
  170. font-weight: 400;
  171. color: var(--ui-BG-Main);
  172. opacity: 1;
  173. }
  174. .forgot-btn {
  175. width: 160rpx;
  176. line-height: 56rpx;
  177. font-size: 30rpx;
  178. font-weight: 500;
  179. color: #999;
  180. }
  181. .login-btn-start {
  182. width: 158rpx;
  183. height: 56rpx;
  184. line-height: normal;
  185. background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
  186. border-radius: 28rpx;
  187. font-size: 26rpx;
  188. font-weight: 500;
  189. color: #fff;
  190. }
  191. .type-btn {
  192. padding: 20rpx;
  193. margin: 40rpx auto;
  194. width: 200rpx;
  195. font-size: 30rpx;
  196. font-weight: 500;
  197. color: #999999;
  198. }
  199. .auto-login-box {
  200. width: 100%;
  201. .auto-login-btn {
  202. width: 68rpx;
  203. height: 68rpx;
  204. border-radius: 50%;
  205. margin: 0 30rpx;
  206. }
  207. .auto-login-img {
  208. width: 68rpx;
  209. height: 68rpx;
  210. border-radius: 50%;
  211. }
  212. }
  213. .code-btn-start {
  214. color: #55b774;
  215. border: 1px solid #55b774;
  216. }
  217. </style>