login.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485
  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 { code } = await sheep.$platform.useProvider().register(code,state.loginReqVO.state,linkId,state.username)
  167. // 提交数据
  168. if (code === 0) {
  169. closeAuthModal();
  170. // 检测 H5 登录回调
  171. let returnUrl = uni.getStorageSync('returnUrl');
  172. if (returnUrl) {
  173. uni.removeStorage('returnUrl');
  174. location.replace(returnUrl);
  175. } else {
  176. uni.switchTab({
  177. url: '/',
  178. });
  179. }
  180. }
  181. }
  182. async function OfficialEnterLogin() {
  183. // 看缓存中有没有linkId 如果有的话 加入model传给后台 即为绑定
  184. const linkId = uni.getStorageSync("linkId")
  185. if(linkId){
  186. state.loginReqVO.linkId = linkId
  187. }
  188. // 参数校验
  189. const validate = await unref(smsLoginRef)
  190. .validate()
  191. .catch((error) => {
  192. console.log('error: ', error);
  193. });
  194. if (!validate) {
  195. return;
  196. }
  197. // 提交数据
  198. const {
  199. code
  200. } = await AuthUtil.OfficialEnterLogin(state.model, state.loginReqVO);
  201. if (code === 0) {
  202. closeAuthModal();
  203. // 检测 H5 登录回调
  204. let returnUrl = uni.getStorageSync('returnUrl');
  205. if (returnUrl) {
  206. uni.removeStorage('returnUrl');
  207. location.replace(returnUrl);
  208. } else {
  209. uni.switchTab({
  210. url: '/',
  211. });
  212. }
  213. }
  214. }
  215. onBeforeMount(async () => {
  216. const options = {}
  217. new URLSearchParams(location.search).forEach((value, key) => {
  218. options[key] = value;
  219. });
  220. state.loginReqVO.code = options.code
  221. state.loginReqVO.state = options.state
  222. })
  223. onLoad(async (options) => {
  224. // #ifdef H5
  225. // 将 search 参数赋值到 options 中,方便下面解析
  226. new URLSearchParams(location.search).forEach((value, key) => {
  227. options[key] = value;
  228. });
  229. const event = options.event;
  230. const code = options.code;
  231. const state = options.state;
  232. if (event === 'login') { // 场景一:登录
  233. const res = await sheep.$platform.useProvider().login(code, state)
  234. console.log("login.vue的res",res)
  235. if (res.data.socialUsers != null){
  236. updateSocialUsers(res.data.openid,res.data.socialUsers)
  237. return false
  238. }
  239. } else if (event === 'register') {
  240. updateIsPopup()
  241. return false
  242. } else if (event === 'bind') { // 场景二:绑定
  243. sheep.$platform.useProvider().bind(code, state);
  244. }
  245. // 检测 H5 登录回调
  246. let returnUrl = uni.getStorageSync('returnUrl');
  247. if (returnUrl) {
  248. uni.removeStorage('returnUrl');
  249. location.replace(returnUrl);
  250. } else {
  251. uni.switchTab({
  252. url: '/',
  253. });
  254. }
  255. // #endif
  256. });
  257. </script>
  258. <style lang="scss" scoped>
  259. .icon{
  260. display:flex;
  261. align-items: center;
  262. margin-right:7rpx
  263. }
  264. .icon image{
  265. width:35rpx;
  266. height:35rpx;
  267. }
  268. @keyframes title-animation {
  269. 0% {
  270. font-size: 32rpx;
  271. }
  272. 100% {
  273. font-size: 36rpx;
  274. }
  275. }
  276. .login-wrap {
  277. padding: 50rpx 34rpx;
  278. min-height: 500rpx;
  279. background-color: #fff;
  280. border-radius: 20rpx 20rpx 0 0;
  281. }
  282. .head-box {
  283. padding: 40rpx 40rpx 0;
  284. .head-title {
  285. min-width: 160rpx;
  286. font-size: 36rpx;
  287. font-weight: bold;
  288. color: #333333;
  289. line-height: 36rpx;
  290. }
  291. .head-title-active {
  292. width: 160rpx;
  293. font-size: 32rpx;
  294. font-weight: 600;
  295. color: #999;
  296. line-height: 36rpx;
  297. }
  298. .head-title-animation {
  299. animation-name: title-animation;
  300. animation-duration: 0.1s;
  301. animation-timing-function: ease-out;
  302. animation-fill-mode: forwards;
  303. }
  304. .head-title-line {
  305. position: relative;
  306. &::before {
  307. content: '';
  308. width: 1rpx;
  309. height: 34rpx;
  310. background-color: #e4e7ed;
  311. position: absolute;
  312. left: -30rpx;
  313. top: 50%;
  314. transform: translateY(-50%);
  315. }
  316. }
  317. .head-subtitle {
  318. font-size: 26rpx;
  319. font-weight: 400;
  320. color: #afb6c0;
  321. text-align: left;
  322. display: flex;
  323. }
  324. }
  325. // .code-btn[disabled] {
  326. // background-color: #fff;
  327. // }
  328. .code-btn-start {
  329. width: 160rpx;
  330. height: 56rpx;
  331. line-height: normal;
  332. border: 2rpx solid var(--ui-BG-Main);
  333. border-radius: 28rpx;
  334. font-size: 26rpx;
  335. font-weight: 400;
  336. color: var(--ui-BG-Main);
  337. opacity: 1;
  338. }
  339. .forgot-btn {
  340. width: 160rpx;
  341. line-height: 56rpx;
  342. font-size: 30rpx;
  343. font-weight: 500;
  344. color: #999;
  345. }
  346. .login-btn-start {
  347. width: 158rpx;
  348. height: 56rpx;
  349. line-height: normal;
  350. background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
  351. border-radius: 28rpx;
  352. font-size: 26rpx;
  353. font-weight: 500;
  354. color: #fff;
  355. }
  356. .type-btn {
  357. padding: 20rpx;
  358. margin: 40rpx auto;
  359. width: 200rpx;
  360. font-size: 30rpx;
  361. font-weight: 500;
  362. color: #999999;
  363. }
  364. .auto-login-box {
  365. width: 100%;
  366. .auto-login-btn {
  367. width: 68rpx;
  368. height: 68rpx;
  369. border-radius: 50%;
  370. margin: 0 30rpx;
  371. }
  372. .auto-login-img {
  373. width: 68rpx;
  374. height: 68rpx;
  375. border-radius: 50%;
  376. }
  377. }
  378. .agreement-box {
  379. margin: 80rpx auto 0;
  380. .protocol-check {
  381. transform: scale(0.7);
  382. }
  383. .agreement-text {
  384. font-size: 26rpx;
  385. font-weight: 500;
  386. color: #999999;
  387. .tcp-text {
  388. color: var(--ui-BG-Main);
  389. }
  390. }
  391. }
  392. // 修改密码
  393. .editPwd-btn-box {
  394. .save-btn {
  395. width: 690rpx;
  396. line-height: 70rpx;
  397. background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
  398. border-radius: 35rpx;
  399. font-size: 28rpx;
  400. font-weight: 500;
  401. color: #ffffff;
  402. }
  403. .forgot-btn {
  404. width: 690rpx;
  405. line-height: 70rpx;
  406. font-size: 28rpx;
  407. font-weight: 500;
  408. color: #999999;
  409. }
  410. }
  411. .code-btn-start {
  412. color: #55b774;
  413. border: 1px solid #55b774;
  414. }
  415. .agreement-box {
  416. margin: 20rpx 0;
  417. }
  418. .login-btn-start {
  419. background: rgb(14, 147, 46);
  420. width: 100%;
  421. height: 80rpx;
  422. font-size: 32rpx;
  423. }
  424. .loginUniForm {
  425. margin: 40rpx;
  426. border: 1rpx solid #d6d6d6;
  427. padding: 10rpx 15rpx;
  428. border-radius: 10rpx;
  429. }
  430. .loginUniFormItem:first-child {
  431. border-bottom: 1rpx solid #d6d6d6;
  432. padding-bottom: 10rpx;
  433. }
  434. .loginUniFormItem:last-child {
  435. // border-bottom: 1rpx solid #d6d6d6;
  436. padding-top: 10rpx;
  437. }
  438. ::v-deep .loginUniFormItem .uni-forms-item__inner {
  439. padding-bottom: 0;
  440. }
  441. ::v-deep .loginUniFormItem .uni-error-message {
  442. bottom: -20rpx;
  443. }
  444. </style>