login.vue 8.0 KB

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