login.vue 10 KB

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