login.vue 9.1 KB

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