login.vue 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258
  1. <!-- 微信公众号的登录回调页 -->
  2. <template>
  3. <!-- 空登陆页 -->
  4. <view />
  5. </template>
  6. <script setup>
  7. import sheep from '@/sheep';
  8. import {
  9. onLoad
  10. } from '@dcloudio/uni-app';
  11. import {
  12. showAuthModal,
  13. closeAuthModal,
  14. } from '@/sheep/hooks/useModal';
  15. onLoad(async (options) => {
  16. // #ifdef H5
  17. // 将 search 参数赋值到 options 中,方便下面解析
  18. new URLSearchParams(location.search).forEach((value, key) => {
  19. options[key] = value;
  20. });
  21. const event = options.event;
  22. const code = options.code;
  23. const state = options.state;
  24. if (event === 'login') { // 场景一:登录
  25. const res = await sheep.$platform.useProvider().login(code, state);
  26. if (!res) {
  27. console.log("返回第一次登录了", res)
  28. showAuthModal("officialAccountFirstLogin")
  29. return false
  30. }
  31. } else if (event === 'bind') { // 场景二:绑定
  32. sheep.$platform.useProvider().bind(code, state);
  33. }
  34. // 检测 H5 登录回调
  35. let returnUrl = uni.getStorageSync('returnUrl');
  36. if (returnUrl) {
  37. uni.removeStorage('returnUrl');
  38. location.replace(returnUrl);
  39. } else {
  40. uni.switchTab({
  41. url: '/',
  42. });
  43. }
  44. // #endif
  45. });
  46. </script>
  47. <style lang="scss" scoped>
  48. @keyframes title-animation {
  49. 0% {
  50. font-size: 32rpx;
  51. }
  52. 100% {
  53. font-size: 36rpx;
  54. }
  55. }
  56. .login-wrap {
  57. padding: 50rpx 34rpx;
  58. min-height: 500rpx;
  59. background-color: #fff;
  60. border-radius: 20rpx 20rpx 0 0;
  61. }
  62. .head-box {
  63. .head-title {
  64. min-width: 160rpx;
  65. font-size: 36rpx;
  66. font-weight: bold;
  67. color: #333333;
  68. line-height: 36rpx;
  69. }
  70. .head-title-active {
  71. width: 160rpx;
  72. font-size: 32rpx;
  73. font-weight: 600;
  74. color: #999;
  75. line-height: 36rpx;
  76. }
  77. .head-title-animation {
  78. animation-name: title-animation;
  79. animation-duration: 0.1s;
  80. animation-timing-function: ease-out;
  81. animation-fill-mode: forwards;
  82. }
  83. .head-title-line {
  84. position: relative;
  85. &::before {
  86. content: '';
  87. width: 1rpx;
  88. height: 34rpx;
  89. background-color: #e4e7ed;
  90. position: absolute;
  91. left: -30rpx;
  92. top: 50%;
  93. transform: translateY(-50%);
  94. }
  95. }
  96. .head-subtitle {
  97. font-size: 26rpx;
  98. font-weight: 400;
  99. color: #afb6c0;
  100. text-align: left;
  101. display: flex;
  102. }
  103. }
  104. // .code-btn[disabled] {
  105. // background-color: #fff;
  106. // }
  107. .code-btn-start {
  108. width: 160rpx;
  109. height: 56rpx;
  110. line-height: normal;
  111. border: 2rpx solid var(--ui-BG-Main);
  112. border-radius: 28rpx;
  113. font-size: 26rpx;
  114. font-weight: 400;
  115. color: var(--ui-BG-Main);
  116. opacity: 1;
  117. }
  118. .forgot-btn {
  119. width: 160rpx;
  120. line-height: 56rpx;
  121. font-size: 30rpx;
  122. font-weight: 500;
  123. color: #999;
  124. }
  125. .login-btn-start {
  126. width: 158rpx;
  127. height: 56rpx;
  128. line-height: normal;
  129. background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
  130. border-radius: 28rpx;
  131. font-size: 26rpx;
  132. font-weight: 500;
  133. color: #fff;
  134. }
  135. .type-btn {
  136. padding: 20rpx;
  137. margin: 40rpx auto;
  138. width: 200rpx;
  139. font-size: 30rpx;
  140. font-weight: 500;
  141. color: #999999;
  142. }
  143. .auto-login-box {
  144. width: 100%;
  145. .auto-login-btn {
  146. width: 68rpx;
  147. height: 68rpx;
  148. border-radius: 50%;
  149. margin: 0 30rpx;
  150. }
  151. .auto-login-img {
  152. width: 68rpx;
  153. height: 68rpx;
  154. border-radius: 50%;
  155. }
  156. }
  157. .agreement-box {
  158. margin: 80rpx auto 0;
  159. .protocol-check {
  160. transform: scale(0.7);
  161. }
  162. .agreement-text {
  163. font-size: 26rpx;
  164. font-weight: 500;
  165. color: #999999;
  166. .tcp-text {
  167. color: var(--ui-BG-Main);
  168. }
  169. }
  170. }
  171. // 修改密码
  172. .editPwd-btn-box {
  173. .save-btn {
  174. width: 690rpx;
  175. line-height: 70rpx;
  176. background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
  177. border-radius: 35rpx;
  178. font-size: 28rpx;
  179. font-weight: 500;
  180. color: #ffffff;
  181. }
  182. .forgot-btn {
  183. width: 690rpx;
  184. line-height: 70rpx;
  185. font-size: 28rpx;
  186. font-weight: 500;
  187. color: #999999;
  188. }
  189. }
  190. .code-btn-start {
  191. color: #55b774;
  192. border: 1px solid #55b774;
  193. }
  194. .agreement-box {
  195. margin: 20rpx 0;
  196. }
  197. .login-btn-start {
  198. background: rgb(14, 147, 46);
  199. width: 100%;
  200. height: 80rpx;
  201. font-size: 32rpx;
  202. }
  203. .loginUniForm {
  204. border: 1rpx solid #d6d6d6;
  205. padding: 10rpx 15rpx;
  206. border-radius: 10rpx;
  207. }
  208. .loginUniFormItem:first-child {
  209. border-bottom: 1rpx solid #d6d6d6;
  210. padding-bottom: 10rpx;
  211. }
  212. .loginUniFormItem:last-child {
  213. // border-bottom: 1rpx solid #d6d6d6;
  214. padding-top: 10rpx;
  215. }
  216. ::v-deep .loginUniFormItem .uni-forms-item__inner {
  217. padding-bottom: 0;
  218. }
  219. ::v-deep .loginUniFormItem .uni-error-message {
  220. bottom: -20rpx;
  221. }
  222. </style>