login.vue 7.6 KB

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