login.vue 9.0 KB

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