login.vue 6.8 KB

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