login.vue 10 KB

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