login.vue 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272
  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. console.log("state.loginReqVO",state.loginReqVO)
  122. state.loginReqVO.code = options.code
  123. state.loginReqVO.state = options.state
  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. @keyframes title-animation {
  148. 0% {
  149. font-size: 32rpx;
  150. }
  151. 100% {
  152. font-size: 36rpx;
  153. }
  154. }
  155. .login-wrap {
  156. padding: 50rpx 34rpx;
  157. min-height: 500rpx;
  158. background-color: #fff;
  159. border-radius: 20rpx 20rpx 0 0;
  160. }
  161. .head-box {
  162. .head-title {
  163. min-width: 160rpx;
  164. font-size: 36rpx;
  165. font-weight: bold;
  166. color: #333333;
  167. line-height: 36rpx;
  168. }
  169. .head-title-active {
  170. width: 160rpx;
  171. font-size: 32rpx;
  172. font-weight: 600;
  173. color: #999;
  174. line-height: 36rpx;
  175. }
  176. .head-title-animation {
  177. animation-name: title-animation;
  178. animation-duration: 0.1s;
  179. animation-timing-function: ease-out;
  180. animation-fill-mode: forwards;
  181. }
  182. .head-title-line {
  183. position: relative;
  184. &::before {
  185. content: '';
  186. width: 1rpx;
  187. height: 34rpx;
  188. background-color: #e4e7ed;
  189. position: absolute;
  190. left: -30rpx;
  191. top: 50%;
  192. transform: translateY(-50%);
  193. }
  194. }
  195. .head-subtitle {
  196. font-size: 26rpx;
  197. font-weight: 400;
  198. color: #afb6c0;
  199. text-align: left;
  200. display: flex;
  201. }
  202. }
  203. // .code-btn[disabled] {
  204. // background-color: #fff;
  205. // }
  206. .code-btn-start {
  207. width: 160rpx;
  208. height: 56rpx;
  209. line-height: normal;
  210. border: 2rpx solid var(--ui-BG-Main);
  211. border-radius: 28rpx;
  212. font-size: 26rpx;
  213. font-weight: 400;
  214. color: var(--ui-BG-Main);
  215. opacity: 1;
  216. }
  217. .forgot-btn {
  218. width: 160rpx;
  219. line-height: 56rpx;
  220. font-size: 30rpx;
  221. font-weight: 500;
  222. color: #999;
  223. }
  224. .login-btn-start {
  225. width: 158rpx;
  226. height: 56rpx;
  227. line-height: normal;
  228. background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
  229. border-radius: 28rpx;
  230. font-size: 26rpx;
  231. font-weight: 500;
  232. color: #fff;
  233. }
  234. .type-btn {
  235. padding: 20rpx;
  236. margin: 40rpx auto;
  237. width: 200rpx;
  238. font-size: 30rpx;
  239. font-weight: 500;
  240. color: #999999;
  241. }
  242. .agreement-box {
  243. margin: 80rpx auto 0;
  244. .protocol-check {
  245. transform: scale(0.7);
  246. }
  247. .agreement-text {
  248. font-size: 26rpx;
  249. font-weight: 500;
  250. color: #999999;
  251. .tcp-text {
  252. color: var(--ui-BG-Main);
  253. }
  254. }
  255. }
  256. </style>