login.vue 4.5 KB

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