login.vue 12 KB

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