index.vue 16 KB

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