index.vue 16 KB

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