login.vue 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336
  1. <!-- 微信公众号的登录回调页 -->
  2. <template>
  3. <!-- 空登陆页 -->
  4. <view />
  5. <su-popup :show="state.isPopup" round="10" :showClose="true" @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. @keyframes title-animation {
  139. 0% {
  140. font-size: 32rpx;
  141. }
  142. 100% {
  143. font-size: 36rpx;
  144. }
  145. }
  146. .login-wrap {
  147. padding: 50rpx 34rpx;
  148. min-height: 500rpx;
  149. background-color: #fff;
  150. border-radius: 20rpx 20rpx 0 0;
  151. }
  152. .head-box {
  153. .head-title {
  154. min-width: 160rpx;
  155. font-size: 36rpx;
  156. font-weight: bold;
  157. color: #333333;
  158. line-height: 36rpx;
  159. }
  160. .head-title-active {
  161. width: 160rpx;
  162. font-size: 32rpx;
  163. font-weight: 600;
  164. color: #999;
  165. line-height: 36rpx;
  166. }
  167. .head-title-animation {
  168. animation-name: title-animation;
  169. animation-duration: 0.1s;
  170. animation-timing-function: ease-out;
  171. animation-fill-mode: forwards;
  172. }
  173. .head-title-line {
  174. position: relative;
  175. &::before {
  176. content: '';
  177. width: 1rpx;
  178. height: 34rpx;
  179. background-color: #e4e7ed;
  180. position: absolute;
  181. left: -30rpx;
  182. top: 50%;
  183. transform: translateY(-50%);
  184. }
  185. }
  186. .head-subtitle {
  187. font-size: 26rpx;
  188. font-weight: 400;
  189. color: #afb6c0;
  190. text-align: left;
  191. display: flex;
  192. }
  193. }
  194. // .code-btn[disabled] {
  195. // background-color: #fff;
  196. // }
  197. .code-btn-start {
  198. width: 160rpx;
  199. height: 56rpx;
  200. line-height: normal;
  201. border: 2rpx solid var(--ui-BG-Main);
  202. border-radius: 28rpx;
  203. font-size: 26rpx;
  204. font-weight: 400;
  205. color: var(--ui-BG-Main);
  206. opacity: 1;
  207. }
  208. .forgot-btn {
  209. width: 160rpx;
  210. line-height: 56rpx;
  211. font-size: 30rpx;
  212. font-weight: 500;
  213. color: #999;
  214. }
  215. .login-btn-start {
  216. width: 158rpx;
  217. height: 56rpx;
  218. line-height: normal;
  219. background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
  220. border-radius: 28rpx;
  221. font-size: 26rpx;
  222. font-weight: 500;
  223. color: #fff;
  224. }
  225. .type-btn {
  226. padding: 20rpx;
  227. margin: 40rpx auto;
  228. width: 200rpx;
  229. font-size: 30rpx;
  230. font-weight: 500;
  231. color: #999999;
  232. }
  233. .auto-login-box {
  234. width: 100%;
  235. .auto-login-btn {
  236. width: 68rpx;
  237. height: 68rpx;
  238. border-radius: 50%;
  239. margin: 0 30rpx;
  240. }
  241. .auto-login-img {
  242. width: 68rpx;
  243. height: 68rpx;
  244. border-radius: 50%;
  245. }
  246. }
  247. .agreement-box {
  248. margin: 80rpx auto 0;
  249. .protocol-check {
  250. transform: scale(0.7);
  251. }
  252. .agreement-text {
  253. font-size: 26rpx;
  254. font-weight: 500;
  255. color: #999999;
  256. .tcp-text {
  257. color: var(--ui-BG-Main);
  258. }
  259. }
  260. }
  261. // 修改密码
  262. .editPwd-btn-box {
  263. .save-btn {
  264. width: 690rpx;
  265. line-height: 70rpx;
  266. background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
  267. border-radius: 35rpx;
  268. font-size: 28rpx;
  269. font-weight: 500;
  270. color: #ffffff;
  271. }
  272. .forgot-btn {
  273. width: 690rpx;
  274. line-height: 70rpx;
  275. font-size: 28rpx;
  276. font-weight: 500;
  277. color: #999999;
  278. }
  279. }
  280. .code-btn-start {
  281. color: #55b774;
  282. border: 1px solid #55b774;
  283. }
  284. .agreement-box {
  285. margin: 20rpx 0;
  286. }
  287. .login-btn-start {
  288. background: rgb(14, 147, 46);
  289. width: 100%;
  290. height: 80rpx;
  291. font-size: 32rpx;
  292. }
  293. .loginUniForm {
  294. border: 1rpx solid #d6d6d6;
  295. padding: 10rpx 15rpx;
  296. border-radius: 10rpx;
  297. }
  298. .loginUniFormItem:first-child {
  299. border-bottom: 1rpx solid #d6d6d6;
  300. padding-bottom: 10rpx;
  301. }
  302. .loginUniFormItem:last-child {
  303. // border-bottom: 1rpx solid #d6d6d6;
  304. padding-top: 10rpx;
  305. }
  306. ::v-deep .loginUniFormItem .uni-forms-item__inner {
  307. padding-bottom: 0;
  308. }
  309. ::v-deep .loginUniFormItem .uni-error-message {
  310. bottom: -20rpx;
  311. }
  312. </style>