index.vue 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676
  1. <template>
  2. <view :style="colorStyle">
  3. <view class="system-height" :style="{ height: statusBarHeight }"></view>
  4. <!-- #ifdef MP -->
  5. <view class="title-bar" style="height: 43px;">
  6. <!-- <view class="icon" @click="back" v-if="!isHome">
  7. <image src="../static/left.png"></image>
  8. </view>
  9. <view class="icon" @click="home" v-else>
  10. <image src="../static/home.png"></image>
  11. </view> -->
  12. 小程序登录
  13. </view>
  14. <!-- #endif -->
  15. <view class="w_login">
  16. <view class="circle">
  17. </view>
  18. <view class="info1">
  19. 欢迎进入中意购
  20. </view>
  21. <view class="info2">
  22. 为您提供优质服务,中意够需要获取以下信息
  23. 您的公开信息 (昵称、头像)
  24. </view>
  25. <button class="now" open-type="getPhoneNumber" hover-class="none" @getphonenumber="getPhoneNumber">
  26. 使用微信权限登录
  27. </button>
  28. <button class="not_now" @click="cancelLogin">
  29. 暂不登录
  30. </button>
  31. </view>
  32. <block v-if="isUp">
  33. <mobileLogin :isUp="isUp" @close="maskClose" :wxcode="code" :authKey="authKey" @wechatPhone="wechatPhone">
  34. </mobileLogin>
  35. </block>
  36. <block v-if="isPhoneBox">
  37. <routinePhone :logoUrl="logoUrl" :isPhoneBox="isPhoneBox" @close="bindPhoneClose" :authKey="authKey">
  38. </routinePhone>
  39. </block>
  40. </view>
  41. </template>
  42. <script>
  43. const app = getApp();
  44. let statusBarHeight = uni.getSystemInfoSync().statusBarHeight + 'px';
  45. import mobileLogin from '../components/login_mobile/index.vue';
  46. import routinePhone from '../components/login_mobile/routine_phone.vue';
  47. import {
  48. getLogo,
  49. silenceAuth,
  50. getUserPhone,
  51. wechatAuthV2
  52. } from '@/api/public';
  53. import {
  54. LOGO_URL,
  55. EXPIRES_TIME,
  56. USER_INFO,
  57. STATE_R_KEY
  58. } from '@/config/cache';
  59. import {
  60. getUserInfo
  61. } from '@/api/user.js';
  62. import {
  63. postLoginAuth
  64. } from '@/api/home.js';
  65. import Routine from '@/libs/routine';
  66. import wechat from '@/libs/wechat';
  67. import colors from '@/mixins/color.js';
  68. export default {
  69. mixins: [colors],
  70. data () {
  71. return {
  72. isUp: false,
  73. phone: '',
  74. statusBarHeight: statusBarHeight,
  75. isHome: false,
  76. isPhoneBox: false,
  77. logoUrl: '',
  78. code: '',
  79. authKey: '',
  80. options: '',
  81. userInfo: {},
  82. codeNum: 0,
  83. canUseGetUserProfile: false
  84. };
  85. },
  86. components: {
  87. mobileLogin,
  88. routinePhone
  89. },
  90. onLoad (options) {
  91. if (uni.getUserProfile) {
  92. this.canUseGetUserProfile = true
  93. }
  94. this.logoUrl = "https://demo26.crmeb.net/statics/system_images/login_logo.jpeg";
  95. // getLogo().then(res => {
  96. // this.logoUrl = res.data.logo_url;
  97. // });
  98. let that = this;
  99. // #ifdef MP
  100. Routine.getCode()
  101. .then(code => {
  102. this.code = code
  103. })
  104. // #endif
  105. // #ifdef H5
  106. document.body.addEventListener('focusout', () => {
  107. setTimeout(() => {
  108. const scrollHeight = document.documentElement.scrollTop || document.body
  109. .scrollTop ||
  110. 0;
  111. window.scrollTo(0, Math.max(scrollHeight - 1, 0));
  112. }, 100);
  113. });
  114. const {
  115. code,
  116. state,
  117. scope
  118. } = options;
  119. this.options = options;
  120. // 获取确认授权code
  121. this.code = code || '';
  122. if (code && this.options.scope !== 'snsapi_base') {
  123. let spread = app.globalData.spid ? app.globalData.spid : '';
  124. //公众号授权登录回调
  125. wechat
  126. .auth(code, state)
  127. .then(res => {
  128. if (res.key !== undefined && res.key) {
  129. that.authKey = res.key;
  130. that.isUp = true;
  131. } else {
  132. let time = res.expires_time - that.$Cache.time();
  133. that.$store.commit('LOGIN', {
  134. token: res.token,
  135. time: time
  136. });
  137. that.userInfo = res.userInfo;
  138. that.$store.commit('SETUID', res.userInfo.userId);
  139. that.$store.commit('UPDATE_USERINFO', res.userInfo);
  140. that.wechatPhone();
  141. }
  142. })
  143. .catch(error => {
  144. // location.replace("/");
  145. });
  146. }
  147. // #endif
  148. let pages = getCurrentPages();
  149. let prePage = pages[pages.length - 2];
  150. if (prePage && prePage.route == 'pages/order_addcart/order_addcart') {
  151. this.isHome = true;
  152. } else {
  153. this.isHome = false;
  154. }
  155. },
  156. methods: {
  157. back () {
  158. uni.navigateBack();
  159. },
  160. home () {
  161. uni.switchTab({
  162. url: '/pages/index/index'
  163. })
  164. },
  165. // 弹窗关闭
  166. maskClose () {
  167. this.isUp = false;
  168. },
  169. bindPhoneClose (data) {
  170. if (data.isStatus) {
  171. this.isPhoneBox = false;
  172. this.$util.Tips({
  173. title: this.$t(`登录成功`),
  174. icon: 'success'
  175. }, {
  176. tab: 3
  177. });
  178. } else {
  179. this.isPhoneBox = false;
  180. }
  181. },
  182. cancelLogin () {
  183. uni.switchTab({
  184. url: '/pages/index/index'
  185. })
  186. },
  187. getPhoneNumber (e) {
  188. let _this = this;
  189. console.log(e)
  190. if (e.detail.errMsg === 'getPhoneNumber:fail user deny' || !e.detail.code) {
  191. console.log("用户拒绝获取手机号");
  192. return
  193. }
  194. uni.showLoading({
  195. title: this.$t(`正在登录中`)
  196. });
  197. let data = {
  198. code: '',
  199. getPhoneNumberCode: ''
  200. }
  201. data.getPhoneNumberCode = e.detail.code
  202. uni.login({
  203. "provider": "weixin",
  204. "onlyAuthorize": true, // 微信登录仅请求授权认证
  205. success: function (event) {
  206. console.log(event.code)
  207. data.code = event.code
  208. console.log(data)
  209. //客户端成功获取授权临时票据(code),向业务服务器发起登录请求。
  210. postLoginAuth(data).then(res => {
  211. if (res.code === 200) {
  212. _this.$store.commit('LOGIN', {
  213. token: res.data.access_token,
  214. time: res.data.expires_in
  215. });
  216. _this.$store.commit('OPENID', res.data.openId);
  217. _this.getUserInfo();
  218. // 登录成功,跳转首页
  219. uni.showToast({
  220. title: "登录成功,即将跳转首页",
  221. icon: 'none',
  222. duration: 2000
  223. });
  224. setTimeout(() => {
  225. // 自动登录失败时,跳转用户注册
  226. uni.switchTab({
  227. url: '/pages/index/index'
  228. })
  229. }, 2000);
  230. } else {
  231. uni.hideLoading();
  232. uni.showToast({
  233. title: "登录失败",
  234. icon: 'none',
  235. duration: 2000
  236. });
  237. }
  238. }).catch(res => {
  239. uni.hideLoading();
  240. });
  241. },
  242. fail: function (err) {
  243. // 登录授权失败
  244. uni.$u.toast('登录失败,错误代码:' + err.code);
  245. }
  246. })
  247. },
  248. getPhoneCode (e) {
  249. console.log(e)
  250. if (e.detail.errMsg == 'getPhoneNumber:fail user deny' || !e.detail.code) {
  251. console.log("用户拒绝获取手机号");
  252. return
  253. }
  254. uni.showLoading({
  255. title: this.$t(`正在登录中`)
  256. });
  257. postLoginAuth({
  258. getPhoneNumberCode: e.detail.code,
  259. // iv: iv,
  260. code: this.code,
  261. // spread_spid: app.globalData.spid,
  262. // spread_code: app.globalData.code
  263. })
  264. .then(res => {
  265. if (res.code == 200) {
  266. this.$store.commit('LOGIN', {
  267. token: res.data.access_token,
  268. time: res.data.expires_in
  269. });
  270. this.$store.commit('OPENID', res.data.openId);
  271. this.getUserInfo();
  272. } else {
  273. uni.hideLoading();
  274. uni.showToast({
  275. title: "手机号暂未注册,即将跳转注册界面",
  276. icon: 'none',
  277. duration: 2000
  278. });
  279. setTimeout(() => {
  280. // 自动登录失败时,跳转用户注册
  281. uni.navigateTo({
  282. url: '/pages/users/register/index?account=' + res.data
  283. })
  284. }, 2000);
  285. }
  286. })
  287. .catch(res => {
  288. uni.hideLoading();
  289. });
  290. },
  291. // #ifdef MP
  292. // 小程序获取手机号码
  293. getphonenumber (e) {
  294. uni.showLoading({
  295. title: this.$t(`正在登录中`)
  296. });
  297. Routine.getCode()
  298. .then(code => {
  299. this.getUserPhoneNumber(e.detail.encryptedData, e.detail.iv, code);
  300. })
  301. .catch(error => {
  302. uni.$emit('closePage', false);
  303. uni.hideLoading();
  304. });
  305. },
  306. // 小程序获取手机号码回调
  307. getUserPhoneNumber (encryptedData, iv, code) {
  308. console.log(this.code);
  309. console.log(code);
  310. postLoginAuth({
  311. getPhoneNumberCode: code,
  312. // iv: iv,
  313. code: this.code,
  314. // spread_spid: app.globalData.spid,
  315. // spread_code: app.globalData.code
  316. })
  317. .then(res => {
  318. let time = res.data.expires_time - this.$Cache.time();
  319. this.$store.commit('LOGIN', {
  320. token: res.data.token,
  321. time: time
  322. });
  323. this.userInfo = res.data.userInfo;
  324. this.$store.commit('SETUID', res.data.userInfo.userId);
  325. this.$store.commit('UPDATE_USERINFO', res.data.userInfo);
  326. this.$Cache.clear('snsapiKey');
  327. this.$util.Tips({
  328. title: this.$t(`登录成功`),
  329. icon: 'success'
  330. }, {
  331. tab: 4
  332. });
  333. })
  334. .catch(res => {
  335. uni.hideLoading();
  336. });
  337. },
  338. /**
  339. * 获取个人用户信息
  340. */
  341. getUserInfo: function () {
  342. console.log("获取个人信息+++++++++++++++++++++++++++++++++")
  343. let that = this;
  344. getUserInfo().then(res => {
  345. uni.hideLoading();
  346. that.userInfo = res.data;
  347. that.$store.commit('SETUID', res.data.userId);
  348. that.$store.commit('UPDATE_USERINFO', res.data);
  349. let GOOD_ID_LOGIN = this.$Cache.get('GOOD_ID_LOGIN')
  350. if (GOOD_ID_LOGIN) {
  351. that.$util.Tips({
  352. title: that.$t(`登录成功`),
  353. icon: 'success'
  354. });
  355. } else {
  356. that.$util.Tips({
  357. title: that.$t(`登录成功`),
  358. icon: 'success'
  359. }, {
  360. tab: 3
  361. });
  362. }
  363. });
  364. },
  365. setUserInfo (e) {
  366. uni.showLoading({
  367. title: this.$t(`正在登录中`)
  368. });
  369. Routine.getCode()
  370. .then(code => {
  371. this.getWxUser(code);
  372. })
  373. .catch(res => {
  374. uni.hideLoading();
  375. });
  376. },
  377. //小程序授权api替换 getUserInfo
  378. getUserProfile () {
  379. uni.showLoading({
  380. title: this.$t(`正在登录中`)
  381. });
  382. let self = this;
  383. Routine.getUserProfile()
  384. .then(res => {
  385. let userInfo = res.userInfo;
  386. console.log(this.code);
  387. console.log(userInfo);
  388. userInfo.code = this.code;
  389. uni.showToast({
  390. title: "手机号暂未注册,即将跳转注册界面",
  391. icon: 'none',
  392. duration: 2000
  393. });
  394. setTimeout(() => {
  395. // 自动登录失败时,跳转用户注册
  396. uni.navigateTo({
  397. url: '/pages/users/register/index'
  398. })
  399. }, 2000);
  400. // userInfo.spread_spid = app.globalData.spid || this.$Cache.get('spread'); //获取推广人ID
  401. // userInfo.spread_code = app.globalData.code; //获取推广人分享二维码ID
  402. // 模拟授权登录成功
  403. // self.$store.commit('LOGIN', {
  404. // token: 'eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJ2NC5jcm1lYi5uZXQiLCJhdWQiOiJ2NC5jcm1lYi5uZXQiLCJpYXQiOjE2NjY1Nzk2NzgsIm5iZiI6MTY2NjU3OTY3OCwiZXhwIjoxNjY5MTcxNjc4LCJqdGkiOnsiaWQiOjM0MzkxLCJ0eXBlIjoiYXBpIn19.GA3Lyr3HueKXwz9GWS6KrO4rYKmJzn3l7ko1nsl7E7Q',
  405. // time: 9999999999999
  406. // });
  407. // this.getUserInfo()
  408. // Routine.authUserInfo(userInfo)
  409. // .then(res => {
  410. // if (res.data.key !== undefined && res.data.key) {
  411. // uni.hideLoading();
  412. // self.authKey = res.data.key;
  413. // self.isPhoneBox = true;
  414. // } else {
  415. // uni.hideLoading();
  416. // let time = res.data.expires_time - self.$Cache.time();
  417. // self.$store.commit('LOGIN', {
  418. // token: res.data.token,
  419. // time: time
  420. // });
  421. // this.getUserInfo()
  422. // }
  423. // })
  424. // .catch(res => {
  425. // uni.hideLoading();
  426. // uni.showToast({
  427. // title: res.msg,
  428. // icon: 'none',
  429. // duration: 2000
  430. // });
  431. // });
  432. })
  433. .catch(res => {
  434. uni.hideLoading();
  435. });
  436. },
  437. getWxUser (code) {
  438. let self = this;
  439. Routine.getUserInfo()
  440. .then(res => {
  441. let userInfo = res.userInfo;
  442. userInfo.code = code;
  443. userInfo.spread_spid = app.globalData.spid; //获取推广人ID
  444. userInfo.spread_code = app.globalData.code; //获取推广人分享二维码ID
  445. Routine.authUserInfo(userInfo)
  446. .then(res => {
  447. if (res.data.key !== undefined && res.data.key) {
  448. uni.hideLoading();
  449. self.authKey = res.data.key;
  450. self.isPhoneBox = true;
  451. } else {
  452. uni.hideLoading();
  453. let time = res.data.expires_time - self.$Cache.time();
  454. self.$store.commit('LOGIN', {
  455. token: res.data.token,
  456. time: time
  457. });
  458. self.$util.Tips({
  459. title: res.msg,
  460. icon: 'success'
  461. }, {
  462. tab: 3
  463. });
  464. }
  465. })
  466. .catch(res => {
  467. uni.hideLoading();
  468. uni.showToast({
  469. title: res.msg,
  470. icon: 'none',
  471. duration: 2000
  472. });
  473. });
  474. })
  475. .catch(res => {
  476. uni.hideLoading();
  477. });
  478. },
  479. // #endif
  480. // #ifdef H5
  481. // 获取url后面的参数
  482. getQueryString (name) {
  483. var reg = new RegExp('(^|&)' + name + '=([^&]*)(&|$)', 'i');
  484. var reg_rewrite = new RegExp('(^|/)' + name + '/([^/]*)(/|$)', 'i');
  485. var r = window.location.search.substr(1).match(reg);
  486. var q = window.location.pathname.substr(1).match(reg_rewrite);
  487. if (r != null) {
  488. return unescape(r[2]);
  489. } else if (q != null) {
  490. return unescape(q[2]);
  491. } else {
  492. return null;
  493. }
  494. },
  495. // 公众号登录
  496. wechatLogin () {
  497. if (!this.code || this.options.scope !== 'snsapi_base') {
  498. this.$wechat.oAuth('snsapi_userinfo', '/pages/users/wechat_login/index');
  499. } else {
  500. if (this.authKey) {
  501. this.isUp = true;
  502. }
  503. }
  504. },
  505. // 输入手机号后的回调
  506. wechatPhone () {
  507. console.log(2222)
  508. this.$Cache.clear('snsapiKey');
  509. if (this.options.back_url) {
  510. let url = uni.getStorageSync('snRouter');
  511. url = url.indexOf('/pages/index/index') != -1 ? '/' : url;
  512. if (url.indexOf('/pages/users/wechat_login/index') !== -1) {
  513. url = '/';
  514. }
  515. if (!url) {
  516. url = '/pages/index/index';
  517. }
  518. this.isUp = false;
  519. uni.showToast({
  520. title: this.$t(`登录成功`),
  521. icon: 'none'
  522. });
  523. setTimeout(res => {
  524. location.href = url;
  525. }, 800);
  526. } else {
  527. this.isUp = false;
  528. uni.showToast({
  529. title: this.$t(`登录成功`),
  530. icon: 'none'
  531. });
  532. setTimeout(res => {
  533. location.href = '/pages/index/index';
  534. }, 800);
  535. }
  536. }
  537. // #endif
  538. }
  539. };
  540. </script>
  541. <style lang="scss">
  542. page {
  543. background: #fff;
  544. }
  545. .wechat_login {
  546. padding: 72rpx 34rpx;
  547. .img image {
  548. width: 100%;
  549. }
  550. .btn-wrapper {
  551. margin-top: 86rpx;
  552. padding: 0 66rpx;
  553. button {
  554. width: 100%;
  555. height: 86rpx;
  556. line-height: 86rpx;
  557. margin-bottom: 40rpx;
  558. border-radius: 120rpx;
  559. font-size: 30rpx;
  560. &.btn1 {
  561. color: #fff;
  562. }
  563. &.btn2 {
  564. color: #666666;
  565. border: 1px solid #666666;
  566. }
  567. }
  568. }
  569. }
  570. .title-bar {
  571. position: relative;
  572. display: flex;
  573. align-items: center;
  574. justify-content: center;
  575. font-size: 36rpx;
  576. }
  577. .icon {
  578. position: absolute;
  579. left: 30rpx;
  580. top: 0;
  581. display: flex;
  582. align-items: center;
  583. justify-content: center;
  584. width: 86rpx;
  585. height: 86rpx;
  586. image {
  587. width: 50rpx;
  588. height: 50rpx;
  589. }
  590. }
  591. .w_login {
  592. padding: 30rpx;
  593. .circle {
  594. border-radius: 50%;
  595. width: 106rpx;
  596. height: 106rpx;
  597. background: rgb(238, 238, 238);
  598. margin: auto;
  599. }
  600. .info1 {
  601. text-align: center;
  602. font-size: 48rpx;
  603. font-weight: 600;
  604. color: #333333;
  605. line-height: 66rpx;
  606. margin-bottom: 30rpx;
  607. }
  608. .info2 {
  609. text-align: center;
  610. font-size: 28rpx;
  611. font-weight: 400;
  612. color: #999999;
  613. line-height: 44rpx;
  614. margin-bottom: 200rpx;
  615. }
  616. .now {
  617. width: 100%;
  618. height: 96rpx;
  619. background: #B42A3E;
  620. border-radius: 8rpx;
  621. font-size: 32rpx;
  622. font-weight: 400;
  623. color: #FFFFFF;
  624. line-height: 96rpx;
  625. margin-bottom: 20rpx;
  626. }
  627. .not_now {
  628. width: 100%;
  629. height: 96rpx;
  630. background: #F5F5F5;
  631. border-radius: 8rpx;
  632. font-size: 32rpx;
  633. font-weight: 400;
  634. color: #999999;
  635. line-height: 96rpx;
  636. }
  637. }
  638. </style>