login.vue 11 KB

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