login.vue 11 KB

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