login.vue 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331
  1. <!-- 微信公众号的登录回调页 -->
  2. <template>
  3. <!-- 空登陆页 -->
  4. <view />
  5. <view>
  6. <view class="head-box ">
  7. <view class="ss-flex ss-m-b-20">
  8. <view class="isActive head-title">
  9. 您首次登录,请输入手机号验证
  10. </view>
  11. </view>
  12. </view>
  13. <!-- 表单项 -->
  14. <uni-forms ref="smsLoginRef" v-model="state.model" :rules="state.rules" validateTrigger="bind" labelWidth="140"
  15. labelAlign="center" class="loginUniForm">
  16. <uni-forms-item name="mobile" label="手机号" class="loginUniFormItem">
  17. <uni-easyinput placeholder="请输入手机号" v-model="state.model.mobile" :inputBorder="false" type="number">
  18. <template v-slot:right>
  19. <button class="ss-reset-button code-btn code-btn-start" :disabled="state.isMobileEnd"
  20. :class="{ 'code-btn-end': state.isMobileEnd }"
  21. @tap="getSmsCode('smsLogin', state.model.mobile)">
  22. {{ getSmsTimer('smsLogin') }}
  23. </button>
  24. </template>
  25. </uni-easyinput>
  26. </uni-forms-item>
  27. <uni-forms-item name="code" label="验证码" class="loginUniFormItem">
  28. <uni-easyinput placeholder="请输入验证码" v-model="state.model.code" :inputBorder="false" type="number"
  29. maxlength="4">
  30. </uni-easyinput>
  31. </uni-forms-item>
  32. </uni-forms>
  33. <view style="display: flex;justify-content: space-between;margin-top: 20rpx;">
  34. <button class="ss-reset-button login-btn-start" @tap="OfficialEnterLogin"> 继续登录 </button>
  35. </view>
  36. </view>
  37. </template>
  38. <script setup>
  39. import {
  40. ref,
  41. reactive,
  42. unref,
  43. computed
  44. } from 'vue';
  45. import sheep from '@/sheep';
  46. import {
  47. onLoad
  48. } from '@dcloudio/uni-app';
  49. import {
  50. showAuthModal,
  51. closeAuthModal,
  52. getSmsCode,
  53. getSmsTimer
  54. } from '@/sheep/hooks/useModal';
  55. import {
  56. code,
  57. mobile
  58. } from '@/sheep/validate/form';
  59. import AuthUtil from '@/sheep/api/member/auth';
  60. const smsLoginRef = ref(null);
  61. // 数据
  62. const state = reactive({
  63. isMobileEnd: false, // 手机号输入完毕
  64. codeText: '获取验证码',
  65. model: {
  66. mobile: '', // 手机号
  67. code: '', // 验证码
  68. },
  69. rules: {
  70. code,
  71. mobile,
  72. },
  73. });
  74. // 短信登录
  75. async function OfficialEnterLogin() {
  76. // 参数校验
  77. const validate = await unref(smsLoginRef)
  78. .validate()
  79. .catch((error) => {
  80. console.log('error: ', error);
  81. });
  82. if (!validate) {
  83. return;
  84. }
  85. // 提交数据
  86. const {
  87. code
  88. } = await AuthUtil.OfficialEnterLogin(state.model);
  89. if (code === 0) {
  90. closeAuthModal();
  91. // 检测 H5 登录回调
  92. let returnUrl = uni.getStorageSync('returnUrl');
  93. if (returnUrl) {
  94. uni.removeStorage('returnUrl');
  95. location.replace(returnUrl);
  96. } else {
  97. uni.switchTab({
  98. url: '/',
  99. });
  100. }
  101. }
  102. }
  103. onLoad(async (options) => {
  104. // #ifdef H5
  105. // 将 search 参数赋值到 options 中,方便下面解析
  106. new URLSearchParams(location.search).forEach((value, key) => {
  107. options[key] = value;
  108. });
  109. const event = options.event;
  110. const code = options.code;
  111. const state = options.state;
  112. if (event === 'login') { // 场景一:登录
  113. const res = await sheep.$platform.useProvider().login(code, state)
  114. return false
  115. } else if (event === 'bind') { // 场景二:绑定
  116. sheep.$platform.useProvider().bind(code, state);
  117. }
  118. // 检测 H5 登录回调
  119. let returnUrl = uni.getStorageSync('returnUrl');
  120. if (returnUrl) {
  121. uni.removeStorage('returnUrl');
  122. location.replace(returnUrl);
  123. } else {
  124. uni.switchTab({
  125. url: '/',
  126. });
  127. }
  128. // #endif
  129. });
  130. </script>
  131. <style lang="scss" scoped>
  132. @keyframes title-animation {
  133. 0% {
  134. font-size: 32rpx;
  135. }
  136. 100% {
  137. font-size: 36rpx;
  138. }
  139. }
  140. .login-wrap {
  141. padding: 50rpx 34rpx;
  142. min-height: 500rpx;
  143. background-color: #fff;
  144. border-radius: 20rpx 20rpx 0 0;
  145. }
  146. .head-box {
  147. .head-title {
  148. min-width: 160rpx;
  149. font-size: 36rpx;
  150. font-weight: bold;
  151. color: #333333;
  152. line-height: 36rpx;
  153. }
  154. .head-title-active {
  155. width: 160rpx;
  156. font-size: 32rpx;
  157. font-weight: 600;
  158. color: #999;
  159. line-height: 36rpx;
  160. }
  161. .head-title-animation {
  162. animation-name: title-animation;
  163. animation-duration: 0.1s;
  164. animation-timing-function: ease-out;
  165. animation-fill-mode: forwards;
  166. }
  167. .head-title-line {
  168. position: relative;
  169. &::before {
  170. content: '';
  171. width: 1rpx;
  172. height: 34rpx;
  173. background-color: #e4e7ed;
  174. position: absolute;
  175. left: -30rpx;
  176. top: 50%;
  177. transform: translateY(-50%);
  178. }
  179. }
  180. .head-subtitle {
  181. font-size: 26rpx;
  182. font-weight: 400;
  183. color: #afb6c0;
  184. text-align: left;
  185. display: flex;
  186. }
  187. }
  188. // .code-btn[disabled] {
  189. // background-color: #fff;
  190. // }
  191. .code-btn-start {
  192. width: 160rpx;
  193. height: 56rpx;
  194. line-height: normal;
  195. border: 2rpx solid var(--ui-BG-Main);
  196. border-radius: 28rpx;
  197. font-size: 26rpx;
  198. font-weight: 400;
  199. color: var(--ui-BG-Main);
  200. opacity: 1;
  201. }
  202. .forgot-btn {
  203. width: 160rpx;
  204. line-height: 56rpx;
  205. font-size: 30rpx;
  206. font-weight: 500;
  207. color: #999;
  208. }
  209. .login-btn-start {
  210. width: 158rpx;
  211. height: 56rpx;
  212. line-height: normal;
  213. background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
  214. border-radius: 28rpx;
  215. font-size: 26rpx;
  216. font-weight: 500;
  217. color: #fff;
  218. }
  219. .type-btn {
  220. padding: 20rpx;
  221. margin: 40rpx auto;
  222. width: 200rpx;
  223. font-size: 30rpx;
  224. font-weight: 500;
  225. color: #999999;
  226. }
  227. .auto-login-box {
  228. width: 100%;
  229. .auto-login-btn {
  230. width: 68rpx;
  231. height: 68rpx;
  232. border-radius: 50%;
  233. margin: 0 30rpx;
  234. }
  235. .auto-login-img {
  236. width: 68rpx;
  237. height: 68rpx;
  238. border-radius: 50%;
  239. }
  240. }
  241. .agreement-box {
  242. margin: 80rpx auto 0;
  243. .protocol-check {
  244. transform: scale(0.7);
  245. }
  246. .agreement-text {
  247. font-size: 26rpx;
  248. font-weight: 500;
  249. color: #999999;
  250. .tcp-text {
  251. color: var(--ui-BG-Main);
  252. }
  253. }
  254. }
  255. // 修改密码
  256. .editPwd-btn-box {
  257. .save-btn {
  258. width: 690rpx;
  259. line-height: 70rpx;
  260. background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
  261. border-radius: 35rpx;
  262. font-size: 28rpx;
  263. font-weight: 500;
  264. color: #ffffff;
  265. }
  266. .forgot-btn {
  267. width: 690rpx;
  268. line-height: 70rpx;
  269. font-size: 28rpx;
  270. font-weight: 500;
  271. color: #999999;
  272. }
  273. }
  274. .code-btn-start {
  275. color: #55b774;
  276. border: 1px solid #55b774;
  277. }
  278. .agreement-box {
  279. margin: 20rpx 0;
  280. }
  281. .login-btn-start {
  282. background: rgb(14, 147, 46);
  283. width: 100%;
  284. height: 80rpx;
  285. font-size: 32rpx;
  286. }
  287. .loginUniForm {
  288. border: 1rpx solid #d6d6d6;
  289. padding: 10rpx 15rpx;
  290. border-radius: 10rpx;
  291. }
  292. .loginUniFormItem:first-child {
  293. border-bottom: 1rpx solid #d6d6d6;
  294. padding-bottom: 10rpx;
  295. }
  296. .loginUniFormItem:last-child {
  297. // border-bottom: 1rpx solid #d6d6d6;
  298. padding-top: 10rpx;
  299. }
  300. ::v-deep .loginUniFormItem .uni-forms-item__inner {
  301. padding-bottom: 0;
  302. }
  303. ::v-deep .loginUniFormItem .uni-error-message {
  304. bottom: -20rpx;
  305. }
  306. </style>