index.vue 16 KB

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