login.vue 6.7 KB

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