login.vue 10 KB

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