login.vue 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378
  1. <!-- 微信公众号的登录回调页 -->
  2. <template>
  3. <view />
  4. <su-popup :show="isPopup" round="10" :showClose="false" @close="closeAuthModal">
  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"
  15. labelWidth="140" 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;padding: 40rpx;padding-bottom: 0rpx;">
  34. <button class="ss-reset-button login-btn-start" @tap="OfficialEnterLogin"> 继续登录 </button>
  35. </view>
  36. </view>
  37. </su-popup>
  38. </template>
  39. <script setup>
  40. import {
  41. ref,
  42. reactive,
  43. unref,
  44. computed,
  45. onBeforeMount
  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. loginReqVO: {
  66. type: 31,
  67. code: "",
  68. state: "",
  69. },
  70. isMobileEnd: false, // 手机号输入完毕
  71. codeText: '获取验证码',
  72. model: {
  73. mobile: '', // 手机号
  74. code: '', // 验证码
  75. scene: 1
  76. },
  77. rules: {
  78. code,
  79. mobile,
  80. },
  81. });
  82. const isPopup = ref(false);
  83. // 定义修改状态的方法
  84. function updateIsPopup() {
  85. isPopup.value = true;
  86. }
  87. defineExpose({
  88. updateIsPopup
  89. });
  90. async function OfficialEnterLogin() {
  91. // 看缓存中有没有linkId 如果有的话 加入model传给后台 即为绑定
  92. const linkId = uni.getStorageSync("linkId")
  93. if(linkId){
  94. state.loginReqVO.linkId = linkId
  95. }
  96. // 参数校验
  97. const validate = await unref(smsLoginRef)
  98. .validate()
  99. .catch((error) => {
  100. console.log('error: ', error);
  101. });
  102. if (!validate) {
  103. return;
  104. }
  105. // 提交数据
  106. const {
  107. code
  108. } = await AuthUtil.OfficialEnterLogin(state.model, state.loginReqVO);
  109. if (code === 0) {
  110. closeAuthModal();
  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. }
  122. }
  123. onBeforeMount(async () => {
  124. const options = {}
  125. new URLSearchParams(location.search).forEach((value, key) => {
  126. options[key] = value;
  127. });
  128. state.loginReqVO.code = options.code
  129. state.loginReqVO.state = options.state
  130. })
  131. onLoad(async (options) => {
  132. // #ifdef H5
  133. // 将 search 参数赋值到 options 中,方便下面解析
  134. new URLSearchParams(location.search).forEach((value, key) => {
  135. options[key] = value;
  136. });
  137. const event = options.event;
  138. const code = options.code;
  139. const state = options.state;
  140. if (event === 'login') { // 场景一:登录
  141. const res = await sheep.$platform.useProvider().login(code, state)
  142. if (!res) {
  143. updateIsPopup()
  144. return false
  145. }
  146. } else if (event === 'bind') { // 场景二:绑定
  147. sheep.$platform.useProvider().bind(code, state);
  148. }
  149. // 检测 H5 登录回调
  150. let returnUrl = uni.getStorageSync('returnUrl');
  151. if (returnUrl) {
  152. uni.removeStorage('returnUrl');
  153. location.replace(returnUrl);
  154. } else {
  155. uni.switchTab({
  156. url: '/',
  157. });
  158. }
  159. // #endif
  160. });
  161. </script>
  162. <style lang="scss" scoped>
  163. @keyframes title-animation {
  164. 0% {
  165. font-size: 32rpx;
  166. }
  167. 100% {
  168. font-size: 36rpx;
  169. }
  170. }
  171. .login-wrap {
  172. padding: 50rpx 34rpx;
  173. min-height: 500rpx;
  174. background-color: #fff;
  175. border-radius: 20rpx 20rpx 0 0;
  176. }
  177. .head-box {
  178. padding: 40rpx 40rpx 0;
  179. .head-title {
  180. min-width: 160rpx;
  181. font-size: 36rpx;
  182. font-weight: bold;
  183. color: #333333;
  184. line-height: 36rpx;
  185. }
  186. .head-title-active {
  187. width: 160rpx;
  188. font-size: 32rpx;
  189. font-weight: 600;
  190. color: #999;
  191. line-height: 36rpx;
  192. }
  193. .head-title-animation {
  194. animation-name: title-animation;
  195. animation-duration: 0.1s;
  196. animation-timing-function: ease-out;
  197. animation-fill-mode: forwards;
  198. }
  199. .head-title-line {
  200. position: relative;
  201. &::before {
  202. content: '';
  203. width: 1rpx;
  204. height: 34rpx;
  205. background-color: #e4e7ed;
  206. position: absolute;
  207. left: -30rpx;
  208. top: 50%;
  209. transform: translateY(-50%);
  210. }
  211. }
  212. .head-subtitle {
  213. font-size: 26rpx;
  214. font-weight: 400;
  215. color: #afb6c0;
  216. text-align: left;
  217. display: flex;
  218. }
  219. }
  220. // .code-btn[disabled] {
  221. // background-color: #fff;
  222. // }
  223. .code-btn-start {
  224. width: 160rpx;
  225. height: 56rpx;
  226. line-height: normal;
  227. border: 2rpx solid var(--ui-BG-Main);
  228. border-radius: 28rpx;
  229. font-size: 26rpx;
  230. font-weight: 400;
  231. color: var(--ui-BG-Main);
  232. opacity: 1;
  233. }
  234. .forgot-btn {
  235. width: 160rpx;
  236. line-height: 56rpx;
  237. font-size: 30rpx;
  238. font-weight: 500;
  239. color: #999;
  240. }
  241. .login-btn-start {
  242. width: 158rpx;
  243. height: 56rpx;
  244. line-height: normal;
  245. background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
  246. border-radius: 28rpx;
  247. font-size: 26rpx;
  248. font-weight: 500;
  249. color: #fff;
  250. }
  251. .type-btn {
  252. padding: 20rpx;
  253. margin: 40rpx auto;
  254. width: 200rpx;
  255. font-size: 30rpx;
  256. font-weight: 500;
  257. color: #999999;
  258. }
  259. .auto-login-box {
  260. width: 100%;
  261. .auto-login-btn {
  262. width: 68rpx;
  263. height: 68rpx;
  264. border-radius: 50%;
  265. margin: 0 30rpx;
  266. }
  267. .auto-login-img {
  268. width: 68rpx;
  269. height: 68rpx;
  270. border-radius: 50%;
  271. }
  272. }
  273. .agreement-box {
  274. margin: 80rpx auto 0;
  275. .protocol-check {
  276. transform: scale(0.7);
  277. }
  278. .agreement-text {
  279. font-size: 26rpx;
  280. font-weight: 500;
  281. color: #999999;
  282. .tcp-text {
  283. color: var(--ui-BG-Main);
  284. }
  285. }
  286. }
  287. // 修改密码
  288. .editPwd-btn-box {
  289. .save-btn {
  290. width: 690rpx;
  291. line-height: 70rpx;
  292. background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
  293. border-radius: 35rpx;
  294. font-size: 28rpx;
  295. font-weight: 500;
  296. color: #ffffff;
  297. }
  298. .forgot-btn {
  299. width: 690rpx;
  300. line-height: 70rpx;
  301. font-size: 28rpx;
  302. font-weight: 500;
  303. color: #999999;
  304. }
  305. }
  306. .code-btn-start {
  307. color: #55b774;
  308. border: 1px solid #55b774;
  309. }
  310. .agreement-box {
  311. margin: 20rpx 0;
  312. }
  313. .login-btn-start {
  314. background: rgb(14, 147, 46);
  315. width: 100%;
  316. height: 80rpx;
  317. font-size: 32rpx;
  318. }
  319. .loginUniForm {
  320. margin: 40rpx;
  321. border: 1rpx solid #d6d6d6;
  322. padding: 10rpx 15rpx;
  323. border-radius: 10rpx;
  324. }
  325. .loginUniFormItem:first-child {
  326. border-bottom: 1rpx solid #d6d6d6;
  327. padding-bottom: 10rpx;
  328. }
  329. .loginUniFormItem:last-child {
  330. // border-bottom: 1rpx solid #d6d6d6;
  331. padding-top: 10rpx;
  332. }
  333. ::v-deep .loginUniFormItem .uni-forms-item__inner {
  334. padding-bottom: 0;
  335. }
  336. ::v-deep .loginUniFormItem .uni-error-message {
  337. bottom: -20rpx;
  338. }
  339. </style>