login.vue 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426
  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. isMobileEnd: false, // 手机号输入完毕
  67. codeText: '获取验证码',
  68. model: {
  69. mobile: '', // 手机号
  70. code: '', // 验证码
  71. },
  72. rules: {
  73. code,
  74. mobile,
  75. },
  76. });
  77. // 短信登录
  78. async function OfficialEnterLogin() {
  79. // 参数校验
  80. const validate = await unref(smsLoginRef)
  81. .validate()
  82. .catch((error) => {
  83. console.log('error: ', error);
  84. });
  85. if (!validate) {
  86. return;
  87. }
  88. // 提交数据
  89. const {
  90. code
  91. } = await AuthUtil.OfficialEnterLogin(state.model);
  92. if (code === 0) {
  93. closeAuthModal();
  94. // 检测 H5 登录回调
  95. let returnUrl = uni.getStorageSync('returnUrl');
  96. if (returnUrl) {
  97. uni.removeStorage('returnUrl');
  98. location.replace(returnUrl);
  99. } else {
  100. uni.switchTab({
  101. url: '/',
  102. });
  103. }
  104. }
  105. }
  106. onLoad(async (options) => {
  107. // #ifdef H5
  108. // 将 search 参数赋值到 options 中,方便下面解析
  109. new URLSearchParams(location.search).forEach((value, key) => {
  110. options[key] = value;
  111. });
  112. const event = options.event;
  113. const code = options.code;
  114. const state = options.state;
  115. if (event === 'login') { // 场景一:登录
  116. const res = await sheep.$platform.useProvider().login(code, state)
  117. if(!res){
  118. state.isPopup = true
  119. return false
  120. }
  121. } else if (event === 'bind') { // 场景二:绑定
  122. sheep.$platform.useProvider().bind(code, state);
  123. }
  124. // 检测 H5 登录回调
  125. let returnUrl = uni.getStorageSync('returnUrl');
  126. if (returnUrl) {
  127. uni.removeStorage('returnUrl');
  128. location.replace(returnUrl);
  129. } else {
  130. uni.switchTab({
  131. url: '/',
  132. });
  133. }
  134. // #endif
  135. });
  136. </script>
  137. <style lang="scss" scoped>
  138. .shake {
  139. animation: shake 0.05s linear 4 alternate;
  140. }
  141. @keyframes shake {
  142. from {
  143. transform: translateX(-10rpx);
  144. }
  145. to {
  146. transform: translateX(10rpx);
  147. }
  148. }
  149. .register-box {
  150. position: relative;
  151. justify-content: center;
  152. .register-btn {
  153. color: #999999;
  154. font-size: 30rpx;
  155. font-weight: 500;
  156. }
  157. .register-title {
  158. color: #999999;
  159. font-size: 30rpx;
  160. font-weight: 400;
  161. margin-right: 24rpx;
  162. }
  163. .or-title {
  164. margin: 0 16rpx;
  165. color: #999999;
  166. font-size: 30rpx;
  167. font-weight: 400;
  168. }
  169. .login-btn {
  170. color: var(--ui-BG-Main);
  171. font-size: 30rpx;
  172. font-weight: 500;
  173. }
  174. .circle {
  175. position: absolute;
  176. right: 0rpx;
  177. top: 18rpx;
  178. width: 8rpx;
  179. height: 8rpx;
  180. border-radius: 8rpx;
  181. background: var(--ui-BG-Main);
  182. }
  183. }
  184. .safe-box {
  185. height: calc(constant(safe-area-inset-bottom) / 5 * 3);
  186. height: calc(env(safe-area-inset-bottom) / 5 * 3);
  187. }
  188. .tcp-text {
  189. color: var(--ui-BG-Main);
  190. }
  191. .agreement-text {
  192. color: $dark-9;
  193. }
  194. .wx-login-btn {
  195. width: 100%;
  196. border: 1rpx solid #55b774;
  197. border-radius: 10rpx;
  198. padding: 10rpx 0;
  199. color: #333333;
  200. display: flex;
  201. align-items: center;
  202. justify-content: center;
  203. font-size: 32rpx;
  204. margin: 0 0 0.625rem 0;
  205. box-sizing: border-box;
  206. text {
  207. margin-left: 20rpx
  208. }
  209. }
  210. .agreement-box {
  211. margin: 40rpx;
  212. }
  213. @keyframes title-animation {
  214. 0% {
  215. font-size: 32rpx;
  216. }
  217. 100% {
  218. font-size: 36rpx;
  219. }
  220. }
  221. .login-wrap {
  222. padding: 50rpx 34rpx;
  223. min-height: 500rpx;
  224. background-color: #fff;
  225. border-radius: 20rpx 20rpx 0 0;
  226. }
  227. .head-box {
  228. .head-title {
  229. min-width: 160rpx;
  230. font-size: 36rpx;
  231. font-weight: bold;
  232. color: #333333;
  233. line-height: 36rpx;
  234. }
  235. .head-title-active {
  236. width: 160rpx;
  237. font-size: 32rpx;
  238. font-weight: 600;
  239. color: #999;
  240. line-height: 36rpx;
  241. }
  242. .head-title-animation {
  243. animation-name: title-animation;
  244. animation-duration: 0.1s;
  245. animation-timing-function: ease-out;
  246. animation-fill-mode: forwards;
  247. }
  248. .head-title-line {
  249. position: relative;
  250. &::before {
  251. content: '';
  252. width: 1rpx;
  253. height: 34rpx;
  254. background-color: #e4e7ed;
  255. position: absolute;
  256. left: -30rpx;
  257. top: 50%;
  258. transform: translateY(-50%);
  259. }
  260. }
  261. .head-subtitle {
  262. font-size: 26rpx;
  263. font-weight: 400;
  264. color: #afb6c0;
  265. text-align: left;
  266. display: flex;
  267. }
  268. }
  269. // .code-btn[disabled] {
  270. // background-color: #fff;
  271. // }
  272. .code-btn-start {
  273. width: 160rpx;
  274. height: 56rpx;
  275. line-height: normal;
  276. border: 2rpx solid var(--ui-BG-Main);
  277. border-radius: 28rpx;
  278. font-size: 26rpx;
  279. font-weight: 400;
  280. color: var(--ui-BG-Main);
  281. opacity: 1;
  282. }
  283. .forgot-btn {
  284. width: 160rpx;
  285. line-height: 56rpx;
  286. font-size: 30rpx;
  287. font-weight: 500;
  288. color: #999;
  289. }
  290. .login-btn-start {
  291. width: 158rpx;
  292. height: 56rpx;
  293. line-height: normal;
  294. background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
  295. border-radius: 28rpx;
  296. font-size: 26rpx;
  297. font-weight: 500;
  298. color: #fff;
  299. }
  300. .type-btn {
  301. padding: 20rpx;
  302. margin: 40rpx auto;
  303. width: 200rpx;
  304. font-size: 30rpx;
  305. font-weight: 500;
  306. color: #999999;
  307. }
  308. .auto-login-box {
  309. width: 100%;
  310. .auto-login-btn {
  311. width: 68rpx;
  312. height: 68rpx;
  313. border-radius: 50%;
  314. margin: 0 30rpx;
  315. }
  316. .auto-login-img {
  317. width: 68rpx;
  318. height: 68rpx;
  319. border-radius: 50%;
  320. }
  321. }
  322. .agreement-box {
  323. margin: 80rpx auto 0;
  324. .protocol-check {
  325. transform: scale(0.7);
  326. }
  327. .agreement-text {
  328. font-size: 26rpx;
  329. font-weight: 500;
  330. color: #999999;
  331. .tcp-text {
  332. color: var(--ui-BG-Main);
  333. }
  334. }
  335. }
  336. // 修改密码
  337. .editPwd-btn-box {
  338. .save-btn {
  339. width: 690rpx;
  340. line-height: 70rpx;
  341. background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
  342. border-radius: 35rpx;
  343. font-size: 28rpx;
  344. font-weight: 500;
  345. color: #ffffff;
  346. }
  347. .forgot-btn {
  348. width: 690rpx;
  349. line-height: 70rpx;
  350. font-size: 28rpx;
  351. font-weight: 500;
  352. color: #999999;
  353. }
  354. }
  355. .code-btn-start {
  356. color: #55b774;
  357. border: 1px solid #55b774;
  358. }
  359. .agreement-box {
  360. margin: 20rpx 0;
  361. }
  362. .login-btn-start {
  363. background: rgb(14, 147, 46);
  364. width: 100%;
  365. height: 80rpx;
  366. font-size: 32rpx;
  367. }
  368. .loginUniForm {
  369. border: 1rpx solid #d6d6d6;
  370. padding: 10rpx 15rpx;
  371. border-radius: 10rpx;
  372. }
  373. .loginUniFormItem:first-child {
  374. border-bottom: 1rpx solid #d6d6d6;
  375. padding-bottom: 10rpx;
  376. }
  377. .loginUniFormItem:last-child {
  378. // border-bottom: 1rpx solid #d6d6d6;
  379. padding-top: 10rpx;
  380. }
  381. ::v-deep .loginUniFormItem .uni-forms-item__inner {
  382. padding-bottom: 0;
  383. }
  384. ::v-deep .loginUniFormItem .uni-error-message {
  385. bottom: -20rpx;
  386. }
  387. </style>