login.vue 4.5 KB

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