index.vue 16 KB

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