login.vue 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327
  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.smsLogin(state.model);
  89. if (code === 0) {
  90. closeAuthModal();
  91. }
  92. }
  93. onLoad(async (options) => {
  94. // #ifdef H5
  95. // 将 search 参数赋值到 options 中,方便下面解析
  96. new URLSearchParams(location.search).forEach((value, key) => {
  97. options[key] = value;
  98. });
  99. const event = options.event;
  100. const code = options.code;
  101. const state = options.state;
  102. if (event === 'login') { // 场景一:登录
  103. await sheep.$platform.useProvider().login(code, state).then((res)=>{
  104. console.log(res)
  105. if (!res) {
  106. console.log("返回第一次登录了", res)
  107. showAuthModal("officialAccountFirstLogin")
  108. }
  109. });
  110. return false
  111. } else if (event === 'bind') { // 场景二:绑定
  112. sheep.$platform.useProvider().bind(code, state);
  113. }
  114. // 检测 H5 登录回调
  115. let returnUrl = uni.getStorageSync('returnUrl');
  116. if (returnUrl) {
  117. uni.removeStorage('returnUrl');
  118. location.replace(returnUrl);
  119. } else {
  120. uni.switchTab({
  121. url: '/',
  122. });
  123. }
  124. // #endif
  125. });
  126. </script>
  127. <style lang="scss" scoped>
  128. @keyframes title-animation {
  129. 0% {
  130. font-size: 32rpx;
  131. }
  132. 100% {
  133. font-size: 36rpx;
  134. }
  135. }
  136. .login-wrap {
  137. padding: 50rpx 34rpx;
  138. min-height: 500rpx;
  139. background-color: #fff;
  140. border-radius: 20rpx 20rpx 0 0;
  141. }
  142. .head-box {
  143. .head-title {
  144. min-width: 160rpx;
  145. font-size: 36rpx;
  146. font-weight: bold;
  147. color: #333333;
  148. line-height: 36rpx;
  149. }
  150. .head-title-active {
  151. width: 160rpx;
  152. font-size: 32rpx;
  153. font-weight: 600;
  154. color: #999;
  155. line-height: 36rpx;
  156. }
  157. .head-title-animation {
  158. animation-name: title-animation;
  159. animation-duration: 0.1s;
  160. animation-timing-function: ease-out;
  161. animation-fill-mode: forwards;
  162. }
  163. .head-title-line {
  164. position: relative;
  165. &::before {
  166. content: '';
  167. width: 1rpx;
  168. height: 34rpx;
  169. background-color: #e4e7ed;
  170. position: absolute;
  171. left: -30rpx;
  172. top: 50%;
  173. transform: translateY(-50%);
  174. }
  175. }
  176. .head-subtitle {
  177. font-size: 26rpx;
  178. font-weight: 400;
  179. color: #afb6c0;
  180. text-align: left;
  181. display: flex;
  182. }
  183. }
  184. // .code-btn[disabled] {
  185. // background-color: #fff;
  186. // }
  187. .code-btn-start {
  188. width: 160rpx;
  189. height: 56rpx;
  190. line-height: normal;
  191. border: 2rpx solid var(--ui-BG-Main);
  192. border-radius: 28rpx;
  193. font-size: 26rpx;
  194. font-weight: 400;
  195. color: var(--ui-BG-Main);
  196. opacity: 1;
  197. }
  198. .forgot-btn {
  199. width: 160rpx;
  200. line-height: 56rpx;
  201. font-size: 30rpx;
  202. font-weight: 500;
  203. color: #999;
  204. }
  205. .login-btn-start {
  206. width: 158rpx;
  207. height: 56rpx;
  208. line-height: normal;
  209. background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
  210. border-radius: 28rpx;
  211. font-size: 26rpx;
  212. font-weight: 500;
  213. color: #fff;
  214. }
  215. .type-btn {
  216. padding: 20rpx;
  217. margin: 40rpx auto;
  218. width: 200rpx;
  219. font-size: 30rpx;
  220. font-weight: 500;
  221. color: #999999;
  222. }
  223. .auto-login-box {
  224. width: 100%;
  225. .auto-login-btn {
  226. width: 68rpx;
  227. height: 68rpx;
  228. border-radius: 50%;
  229. margin: 0 30rpx;
  230. }
  231. .auto-login-img {
  232. width: 68rpx;
  233. height: 68rpx;
  234. border-radius: 50%;
  235. }
  236. }
  237. .agreement-box {
  238. margin: 80rpx auto 0;
  239. .protocol-check {
  240. transform: scale(0.7);
  241. }
  242. .agreement-text {
  243. font-size: 26rpx;
  244. font-weight: 500;
  245. color: #999999;
  246. .tcp-text {
  247. color: var(--ui-BG-Main);
  248. }
  249. }
  250. }
  251. // 修改密码
  252. .editPwd-btn-box {
  253. .save-btn {
  254. width: 690rpx;
  255. line-height: 70rpx;
  256. background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
  257. border-radius: 35rpx;
  258. font-size: 28rpx;
  259. font-weight: 500;
  260. color: #ffffff;
  261. }
  262. .forgot-btn {
  263. width: 690rpx;
  264. line-height: 70rpx;
  265. font-size: 28rpx;
  266. font-weight: 500;
  267. color: #999999;
  268. }
  269. }
  270. .code-btn-start {
  271. color: #55b774;
  272. border: 1px solid #55b774;
  273. }
  274. .agreement-box {
  275. margin: 20rpx 0;
  276. }
  277. .login-btn-start {
  278. background: rgb(14, 147, 46);
  279. width: 100%;
  280. height: 80rpx;
  281. font-size: 32rpx;
  282. }
  283. .loginUniForm {
  284. border: 1rpx solid #d6d6d6;
  285. padding: 10rpx 15rpx;
  286. border-radius: 10rpx;
  287. }
  288. .loginUniFormItem:first-child {
  289. border-bottom: 1rpx solid #d6d6d6;
  290. padding-bottom: 10rpx;
  291. }
  292. .loginUniFormItem:last-child {
  293. // border-bottom: 1rpx solid #d6d6d6;
  294. padding-top: 10rpx;
  295. }
  296. ::v-deep .loginUniFormItem .uni-forms-item__inner {
  297. padding-bottom: 0;
  298. }
  299. ::v-deep .loginUniFormItem .uni-error-message {
  300. bottom: -20rpx;
  301. }
  302. </style>