login.vue 11 KB

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