index.vue 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692
  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. console.log("获取个人信息+++++++++++++++++++++++++++++++++")
  351. let that = this;
  352. getUserInfo().then(res => {
  353. uni.hideLoading();
  354. that.userInfo = res.data;
  355. that.$store.commit('SETUID', res.data.userId);
  356. that.$store.commit('UPDATE_USERINFO', res.data);
  357. let GOOD_ID_LOGIN = this.$Cache.get('GOOD_ID_LOGIN')
  358. if (GOOD_ID_LOGIN) {
  359. that.$util.Tips({
  360. title: that.$t(`登录成功`),
  361. icon: 'success'
  362. });
  363. } else {
  364. that.$util.Tips({
  365. title: that.$t(`登录成功`),
  366. icon: 'success'
  367. }, {
  368. tab: 3
  369. });
  370. }
  371. });
  372. },
  373. setUserInfo (e) {
  374. uni.showLoading({
  375. title: this.$t(`正在登录中`)
  376. });
  377. Routine.getCode()
  378. .then(code => {
  379. this.getWxUser(code);
  380. })
  381. .catch(res => {
  382. uni.hideLoading();
  383. });
  384. },
  385. //小程序授权api替换 getUserInfo
  386. getUserProfile () {
  387. uni.showLoading({
  388. title: this.$t(`正在登录中`)
  389. });
  390. let self = this;
  391. Routine.getUserProfile()
  392. .then(res => {
  393. let userInfo = res.userInfo;
  394. console.log(this.code);
  395. console.log(userInfo);
  396. userInfo.code = this.code;
  397. uni.showToast({
  398. title: "手机号暂未注册,即将跳转注册界面",
  399. icon: 'none',
  400. duration: 2000
  401. });
  402. setTimeout(() => {
  403. // 自动登录失败时,跳转用户注册
  404. uni.navigateTo({
  405. url: '/pages/users/register/index'
  406. })
  407. }, 2000);
  408. // userInfo.spread_spid = app.globalData.spid || this.$Cache.get('spread'); //获取推广人ID
  409. // userInfo.spread_code = app.globalData.code; //获取推广人分享二维码ID
  410. // 模拟授权登录成功
  411. // self.$store.commit('LOGIN', {
  412. // token: 'eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJ2NC5jcm1lYi5uZXQiLCJhdWQiOiJ2NC5jcm1lYi5uZXQiLCJpYXQiOjE2NjY1Nzk2NzgsIm5iZiI6MTY2NjU3OTY3OCwiZXhwIjoxNjY5MTcxNjc4LCJqdGkiOnsiaWQiOjM0MzkxLCJ0eXBlIjoiYXBpIn19.GA3Lyr3HueKXwz9GWS6KrO4rYKmJzn3l7ko1nsl7E7Q',
  413. // time: 9999999999999
  414. // });
  415. // this.getUserInfo()
  416. // Routine.authUserInfo(userInfo)
  417. // .then(res => {
  418. // if (res.data.key !== undefined && res.data.key) {
  419. // uni.hideLoading();
  420. // self.authKey = res.data.key;
  421. // self.isPhoneBox = true;
  422. // } else {
  423. // uni.hideLoading();
  424. // let time = res.data.expires_time - self.$Cache.time();
  425. // self.$store.commit('LOGIN', {
  426. // token: res.data.token,
  427. // time: time
  428. // });
  429. // this.getUserInfo()
  430. // }
  431. // })
  432. // .catch(res => {
  433. // uni.hideLoading();
  434. // uni.showToast({
  435. // title: res.msg,
  436. // icon: 'none',
  437. // duration: 2000
  438. // });
  439. // });
  440. })
  441. .catch(res => {
  442. uni.hideLoading();
  443. });
  444. },
  445. getWxUser (code) {
  446. let self = this;
  447. Routine.getUserInfo()
  448. .then(res => {
  449. let userInfo = res.userInfo;
  450. userInfo.code = code;
  451. userInfo.spread_spid = app.globalData.spid; //获取推广人ID
  452. userInfo.spread_code = app.globalData.code; //获取推广人分享二维码ID
  453. Routine.authUserInfo(userInfo)
  454. .then(res => {
  455. if (res.data.key !== undefined && res.data.key) {
  456. uni.hideLoading();
  457. self.authKey = res.data.key;
  458. self.isPhoneBox = true;
  459. } else {
  460. uni.hideLoading();
  461. let time = res.data.expires_time - self.$Cache.time();
  462. self.$store.commit('LOGIN', {
  463. token: res.data.token,
  464. time: time
  465. });
  466. self.$util.Tips({
  467. title: res.msg,
  468. icon: 'success'
  469. }, {
  470. tab: 3
  471. });
  472. }
  473. })
  474. .catch(res => {
  475. uni.hideLoading();
  476. uni.showToast({
  477. title: res.msg,
  478. icon: 'none',
  479. duration: 2000
  480. });
  481. });
  482. })
  483. .catch(res => {
  484. uni.hideLoading();
  485. });
  486. },
  487. // #endif
  488. // #ifdef H5
  489. // 获取url后面的参数
  490. getQueryString (name) {
  491. var reg = new RegExp('(^|&)' + name + '=([^&]*)(&|$)', 'i');
  492. var reg_rewrite = new RegExp('(^|/)' + name + '/([^/]*)(/|$)', 'i');
  493. var r = window.location.search.substr(1).match(reg);
  494. var q = window.location.pathname.substr(1).match(reg_rewrite);
  495. if (r != null) {
  496. return unescape(r[2]);
  497. } else if (q != null) {
  498. return unescape(q[2]);
  499. } else {
  500. return null;
  501. }
  502. },
  503. // 公众号登录
  504. wechatLogin () {
  505. if (!this.code || this.options.scope !== 'snsapi_base') {
  506. this.$wechat.oAuth('snsapi_userinfo', '/pages/users/wechat_login/index');
  507. } else {
  508. if (this.authKey) {
  509. this.isUp = true;
  510. }
  511. }
  512. },
  513. // 输入手机号后的回调
  514. wechatPhone () {
  515. console.log(2222)
  516. this.$Cache.clear('snsapiKey');
  517. if (this.options.back_url) {
  518. let url = uni.getStorageSync('snRouter');
  519. url = url.indexOf('/pages/index/index') != -1 ? '/' : url;
  520. if (url.indexOf('/pages/users/wechat_login/index') !== -1) {
  521. url = '/';
  522. }
  523. if (!url) {
  524. url = '/pages/index/index';
  525. }
  526. this.isUp = false;
  527. uni.showToast({
  528. title: this.$t(`登录成功`),
  529. icon: 'none'
  530. });
  531. setTimeout(res => {
  532. location.href = url;
  533. }, 800);
  534. } else {
  535. this.isUp = false;
  536. uni.showToast({
  537. title: this.$t(`登录成功`),
  538. icon: 'none'
  539. });
  540. setTimeout(res => {
  541. location.href = '/pages/index/index';
  542. }, 800);
  543. }
  544. }
  545. // #endif
  546. }
  547. };
  548. </script>
  549. <style lang="scss">
  550. page {
  551. background: #fff;
  552. }
  553. .wechat_login {
  554. padding: 72rpx 34rpx;
  555. .img image {
  556. width: 100%;
  557. }
  558. .btn-wrapper {
  559. margin-top: 86rpx;
  560. padding: 0 66rpx;
  561. button {
  562. width: 100%;
  563. height: 86rpx;
  564. line-height: 86rpx;
  565. margin-bottom: 40rpx;
  566. border-radius: 120rpx;
  567. font-size: 30rpx;
  568. &.btn1 {
  569. color: #fff;
  570. }
  571. &.btn2 {
  572. color: #666666;
  573. border: 1px solid #666666;
  574. }
  575. }
  576. }
  577. }
  578. .title-bar {
  579. position: relative;
  580. display: flex;
  581. align-items: center;
  582. justify-content: center;
  583. font-size: 36rpx;
  584. }
  585. .icon {
  586. position: absolute;
  587. left: 30rpx;
  588. top: 0;
  589. display: flex;
  590. align-items: center;
  591. justify-content: center;
  592. width: 86rpx;
  593. height: 86rpx;
  594. image {
  595. width: 50rpx;
  596. height: 50rpx;
  597. }
  598. }
  599. .w_login {
  600. padding: 30rpx;
  601. .circle {
  602. border-radius: 50%;
  603. width: 106rpx;
  604. height: 106rpx;
  605. /*background: rgb(238, 238, 238);*/
  606. margin: auto;
  607. }
  608. .logoImg{
  609. width: 106rpx;
  610. height: 106rpx;
  611. }
  612. .info1 {
  613. text-align: center;
  614. font-size: 48rpx;
  615. font-weight: 600;
  616. color: #333333;
  617. line-height: 66rpx;
  618. margin-bottom: 30rpx;
  619. }
  620. .info2 {
  621. text-align: center;
  622. font-size: 28rpx;
  623. font-weight: 400;
  624. color: #999999;
  625. line-height: 44rpx;
  626. margin-bottom: 200rpx;
  627. }
  628. .now {
  629. width: 100%;
  630. height: 96rpx;
  631. background: #B42A3E;
  632. border-radius: 8rpx;
  633. font-size: 32rpx;
  634. font-weight: 400;
  635. color: #FFFFFF;
  636. line-height: 96rpx;
  637. margin-bottom: 20rpx;
  638. }
  639. .not_now {
  640. width: 100%;
  641. height: 96rpx;
  642. background: #F5F5F5;
  643. border-radius: 8rpx;
  644. font-size: 32rpx;
  645. font-weight: 400;
  646. color: #999999;
  647. line-height: 96rpx;
  648. }
  649. }
  650. </style>