login.vue 8.5 KB

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