index.vue 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615
  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. {{ $t(`账户登录`) }}
  13. </view>
  14. <!-- #endif -->
  15. <view class="wechat_login">
  16. <view class="img">
  17. <image src="../static/wechat_login.png" mode="widthFix"></image>
  18. </view>
  19. <view class="btn-wrapper">
  20. <!-- #ifdef H5 -->
  21. <!-- <button hover-class="none" @click="wechatLogin" class="bg-green btn1">{{ $t(`微信登录`) }}</button>-->
  22. <!-- #endif -->
  23. <!-- #ifdef MP -->
  24. <!-- <button v-if="canUseGetUserProfile && code" hover-class="none" @tap="getUserProfile"
  25. class="bg-green btn1">{{ $t(`微信用户一键登录`) }}</button> -->
  26. <!-- <button v-if="canUseGetUserProfile && code" hover-class="none"
  27. open-type="getPhoneNumber" @getphonenumber="getphonenumber"
  28. class="bg-green btn1">{{ $t(`微信用户一键登录`) }}</button> -->
  29. <!-- <button v-if="canUseGetUserProfile && code" open-type="getPhoneNumber" hover-class="none"-->
  30. <!-- @getphonenumber="getPhoneCode" class="bg-green btn1">{{ $t(`微信用户一键登录`) }}</button>-->
  31. <button open-type="getPhoneNumber" hover-class="none"
  32. @getphonenumber="getPhoneNumber" class="bg-green btn1">{{ $t(`微信用户一键登录`) }}</button>
  33. <!-- <button v-else hover-class="none" open-type="getUserInfo" @getuserinfo="setUserInfo"-->
  34. <!-- class="bg-green btn1">{{ $t(`微信用户一键登录`) }}</button>-->
  35. <!-- #endif -->
  36. <!-- <button hover-class="none" @click="isUp = true" class="btn2">{{ $t(`账号密码登录`) }}</button>-->
  37. </view>
  38. </view>
  39. <block v-if="isUp">
  40. <mobileLogin :isUp="isUp" @close="maskClose" :wxcode="code" :authKey="authKey" @wechatPhone="wechatPhone">
  41. </mobileLogin>
  42. </block>
  43. <block v-if="isPhoneBox">
  44. <routinePhone :logoUrl="logoUrl" :isPhoneBox="isPhoneBox" @close="bindPhoneClose" :authKey="authKey">
  45. </routinePhone>
  46. </block>
  47. </view>
  48. </template>
  49. <script>
  50. const app = getApp();
  51. let statusBarHeight = uni.getSystemInfoSync().statusBarHeight + 'px';
  52. import mobileLogin from '../components/login_mobile/index.vue';
  53. import routinePhone from '../components/login_mobile/routine_phone.vue';
  54. import {
  55. getLogo,
  56. silenceAuth,
  57. getUserPhone,
  58. wechatAuthV2
  59. } from '@/api/public';
  60. import {
  61. LOGO_URL,
  62. EXPIRES_TIME,
  63. USER_INFO,
  64. STATE_R_KEY
  65. } from '@/config/cache';
  66. import {
  67. getUserInfo
  68. } from '@/api/user.js';
  69. import {
  70. postLoginAuth
  71. } from '@/api/home.js';
  72. import Routine from '@/libs/routine';
  73. import wechat from '@/libs/wechat';
  74. import colors from '@/mixins/color.js';
  75. export default {
  76. mixins: [colors],
  77. data() {
  78. return {
  79. isUp: false,
  80. phone: '',
  81. statusBarHeight: statusBarHeight,
  82. isHome: false,
  83. isPhoneBox: false,
  84. logoUrl: '',
  85. code: '',
  86. authKey: '',
  87. options: '',
  88. userInfo: {},
  89. codeNum: 0,
  90. canUseGetUserProfile: false
  91. };
  92. },
  93. components: {
  94. mobileLogin,
  95. routinePhone
  96. },
  97. onLoad(options) {
  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. getPhoneNumber(e) {
  190. let _this =this;
  191. console.log(e)
  192. if (e.detail.errMsg === 'getPhoneNumber:fail user deny' || !e.detail.code){
  193. console.log("用户拒绝获取手机号");
  194. return
  195. }
  196. uni.showLoading({
  197. title: this.$t(`正在登录中`)
  198. });
  199. let data = {
  200. code: '',
  201. getPhoneNumberCode: ''
  202. }
  203. data.getPhoneNumberCode = e.detail.code
  204. uni.login({
  205. "provider": "weixin",
  206. "onlyAuthorize": true, // 微信登录仅请求授权认证
  207. success: function(event) {
  208. console.log(event.code)
  209. data.code = event.code
  210. console.log(data)
  211. //客户端成功获取授权临时票据(code),向业务服务器发起登录请求。
  212. postLoginAuth(data).then(res => {
  213. if (res.code === 200) {
  214. _this.$store.commit('LOGIN', {
  215. token: res.data.access_token,
  216. time: res.data.expires_in
  217. });
  218. _this.$store.commit('OPENID', res.data.openId);
  219. _this.getUserInfo();
  220. // 登录成功,跳转首页
  221. uni.showToast({
  222. title: "登录成功,即将跳转首页",
  223. icon: 'none',
  224. duration: 2000
  225. });
  226. setTimeout(() => {
  227. // 自动登录失败时,跳转用户注册
  228. uni.switchTab({
  229. url: '/pages/index/index'
  230. })
  231. }, 2000);
  232. } else {
  233. uni.hideLoading();
  234. uni.showToast({
  235. title: "登录失败",
  236. icon: 'none',
  237. duration: 2000
  238. });
  239. }
  240. }).catch(res => {
  241. uni.hideLoading();
  242. });
  243. },
  244. fail: function(err) {
  245. // 登录授权失败
  246. uni.$u.toast('登录失败,错误代码:' + err.code);
  247. }
  248. })
  249. },
  250. getPhoneCode(e) {
  251. console.log(e)
  252. if (e.detail.errMsg == 'getPhoneNumber:fail user deny' || !e.detail.code){
  253. console.log("用户拒绝获取手机号");
  254. return
  255. }
  256. uni.showLoading({
  257. title: this.$t(`正在登录中`)
  258. });
  259. postLoginAuth({
  260. getPhoneNumberCode: e.detail.code,
  261. // iv: iv,
  262. code: this.code,
  263. // spread_spid: app.globalData.spid,
  264. // spread_code: app.globalData.code
  265. })
  266. .then(res => {
  267. if (res.code == 200) {
  268. this.$store.commit('LOGIN', {
  269. token: res.data.access_token,
  270. time: res.data.expires_in
  271. });
  272. this.$store.commit('OPENID', res.data.openId);
  273. this.getUserInfo();
  274. } else {
  275. uni.hideLoading();
  276. uni.showToast({
  277. title: "手机号暂未注册,即将跳转注册界面",
  278. icon: 'none',
  279. duration: 2000
  280. });
  281. setTimeout(() => {
  282. // 自动登录失败时,跳转用户注册
  283. uni.navigateTo({
  284. url: '/pages/users/register/index?account=' + res.data
  285. })
  286. }, 2000);
  287. }
  288. })
  289. .catch(res => {
  290. uni.hideLoading();
  291. });
  292. },
  293. // #ifdef MP
  294. // 小程序获取手机号码
  295. getphonenumber(e) {
  296. uni.showLoading({
  297. title: this.$t(`正在登录中`)
  298. });
  299. Routine.getCode()
  300. .then(code => {
  301. this.getUserPhoneNumber(e.detail.encryptedData, e.detail.iv, code);
  302. })
  303. .catch(error => {
  304. uni.$emit('closePage', false);
  305. uni.hideLoading();
  306. });
  307. },
  308. // 小程序获取手机号码回调
  309. getUserPhoneNumber(encryptedData, iv, code) {
  310. console.log(this.code);
  311. console.log(code);
  312. postLoginAuth({
  313. getPhoneNumberCode: code,
  314. // iv: iv,
  315. code: this.code,
  316. // spread_spid: app.globalData.spid,
  317. // spread_code: app.globalData.code
  318. })
  319. .then(res => {
  320. let time = res.data.expires_time - this.$Cache.time();
  321. this.$store.commit('LOGIN', {
  322. token: res.data.token,
  323. time: time
  324. });
  325. this.userInfo = res.data.userInfo;
  326. this.$store.commit('SETUID', res.data.userInfo.userId);
  327. this.$store.commit('UPDATE_USERINFO', res.data.userInfo);
  328. this.$Cache.clear('snsapiKey');
  329. this.$util.Tips({
  330. title: this.$t(`登录成功`),
  331. icon: 'success'
  332. }, {
  333. tab: 4
  334. });
  335. })
  336. .catch(res => {
  337. uni.hideLoading();
  338. });
  339. },
  340. /**
  341. * 获取个人用户信息
  342. */
  343. getUserInfo: function () {
  344. console.log("获取个人信息+++++++++++++++++++++++++++++++++")
  345. let that = this;
  346. getUserInfo().then(res => {
  347. uni.hideLoading();
  348. that.userInfo = res.data;
  349. that.$store.commit('SETUID', res.data.userId);
  350. that.$store.commit('UPDATE_USERINFO', res.data);
  351. let GOOD_ID_LOGIN = this.$Cache.get('GOOD_ID_LOGIN')
  352. if (GOOD_ID_LOGIN) {
  353. that.$util.Tips({
  354. title: that.$t(`登录成功`),
  355. icon: 'success'
  356. });
  357. } else {
  358. that.$util.Tips({
  359. title: that.$t(`登录成功`),
  360. icon: 'success'
  361. }, {
  362. tab: 3
  363. });
  364. }
  365. });
  366. },
  367. setUserInfo(e) {
  368. uni.showLoading({
  369. title: this.$t(`正在登录中`)
  370. });
  371. Routine.getCode()
  372. .then(code => {
  373. this.getWxUser(code);
  374. })
  375. .catch(res => {
  376. uni.hideLoading();
  377. });
  378. },
  379. //小程序授权api替换 getUserInfo
  380. getUserProfile() {
  381. uni.showLoading({
  382. title: this.$t(`正在登录中`)
  383. });
  384. let self = this;
  385. Routine.getUserProfile()
  386. .then(res => {
  387. let userInfo = res.userInfo;
  388. console.log(this.code);
  389. console.log(userInfo);
  390. userInfo.code = this.code;
  391. uni.showToast({
  392. title: "手机号暂未注册,即将跳转注册界面",
  393. icon: 'none',
  394. duration: 2000
  395. });
  396. setTimeout(() => {
  397. // 自动登录失败时,跳转用户注册
  398. uni.navigateTo({
  399. url: '/pages/users/register/index'
  400. })
  401. }, 2000);
  402. // userInfo.spread_spid = app.globalData.spid || this.$Cache.get('spread'); //获取推广人ID
  403. // userInfo.spread_code = app.globalData.code; //获取推广人分享二维码ID
  404. // 模拟授权登录成功
  405. // self.$store.commit('LOGIN', {
  406. // token: 'eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJ2NC5jcm1lYi5uZXQiLCJhdWQiOiJ2NC5jcm1lYi5uZXQiLCJpYXQiOjE2NjY1Nzk2NzgsIm5iZiI6MTY2NjU3OTY3OCwiZXhwIjoxNjY5MTcxNjc4LCJqdGkiOnsiaWQiOjM0MzkxLCJ0eXBlIjoiYXBpIn19.GA3Lyr3HueKXwz9GWS6KrO4rYKmJzn3l7ko1nsl7E7Q',
  407. // time: 9999999999999
  408. // });
  409. // this.getUserInfo()
  410. // Routine.authUserInfo(userInfo)
  411. // .then(res => {
  412. // if (res.data.key !== undefined && res.data.key) {
  413. // uni.hideLoading();
  414. // self.authKey = res.data.key;
  415. // self.isPhoneBox = true;
  416. // } else {
  417. // uni.hideLoading();
  418. // let time = res.data.expires_time - self.$Cache.time();
  419. // self.$store.commit('LOGIN', {
  420. // token: res.data.token,
  421. // time: time
  422. // });
  423. // this.getUserInfo()
  424. // }
  425. // })
  426. // .catch(res => {
  427. // uni.hideLoading();
  428. // uni.showToast({
  429. // title: res.msg,
  430. // icon: 'none',
  431. // duration: 2000
  432. // });
  433. // });
  434. })
  435. .catch(res => {
  436. uni.hideLoading();
  437. });
  438. },
  439. getWxUser(code) {
  440. let self = this;
  441. Routine.getUserInfo()
  442. .then(res => {
  443. let userInfo = res.userInfo;
  444. userInfo.code = code;
  445. userInfo.spread_spid = app.globalData.spid; //获取推广人ID
  446. userInfo.spread_code = app.globalData.code; //获取推广人分享二维码ID
  447. Routine.authUserInfo(userInfo)
  448. .then(res => {
  449. if (res.data.key !== undefined && res.data.key) {
  450. uni.hideLoading();
  451. self.authKey = res.data.key;
  452. self.isPhoneBox = true;
  453. } else {
  454. uni.hideLoading();
  455. let time = res.data.expires_time - self.$Cache.time();
  456. self.$store.commit('LOGIN', {
  457. token: res.data.token,
  458. time: time
  459. });
  460. self.$util.Tips({
  461. title: res.msg,
  462. icon: 'success'
  463. }, {
  464. tab: 3
  465. });
  466. }
  467. })
  468. .catch(res => {
  469. uni.hideLoading();
  470. uni.showToast({
  471. title: res.msg,
  472. icon: 'none',
  473. duration: 2000
  474. });
  475. });
  476. })
  477. .catch(res => {
  478. uni.hideLoading();
  479. });
  480. },
  481. // #endif
  482. // #ifdef H5
  483. // 获取url后面的参数
  484. getQueryString(name) {
  485. var reg = new RegExp('(^|&)' + name + '=([^&]*)(&|$)', 'i');
  486. var reg_rewrite = new RegExp('(^|/)' + name + '/([^/]*)(/|$)', 'i');
  487. var r = window.location.search.substr(1).match(reg);
  488. var q = window.location.pathname.substr(1).match(reg_rewrite);
  489. if (r != null) {
  490. return unescape(r[2]);
  491. } else if (q != null) {
  492. return unescape(q[2]);
  493. } else {
  494. return null;
  495. }
  496. },
  497. // 公众号登录
  498. wechatLogin() {
  499. if (!this.code || this.options.scope !== 'snsapi_base') {
  500. this.$wechat.oAuth('snsapi_userinfo', '/pages/users/wechat_login/index');
  501. } else {
  502. if (this.authKey) {
  503. this.isUp = true;
  504. }
  505. }
  506. },
  507. // 输入手机号后的回调
  508. wechatPhone() {
  509. console.log(2222)
  510. this.$Cache.clear('snsapiKey');
  511. if (this.options.back_url) {
  512. let url = uni.getStorageSync('snRouter');
  513. url = url.indexOf('/pages/index/index') != -1 ? '/' : url;
  514. if (url.indexOf('/pages/users/wechat_login/index') !== -1) {
  515. url = '/';
  516. }
  517. if (!url) {
  518. url = '/pages/index/index';
  519. }
  520. this.isUp = false;
  521. uni.showToast({
  522. title: this.$t(`登录成功`),
  523. icon: 'none'
  524. });
  525. setTimeout(res => {
  526. location.href = url;
  527. }, 800);
  528. } else {
  529. this.isUp = false;
  530. uni.showToast({
  531. title: this.$t(`登录成功`),
  532. icon: 'none'
  533. });
  534. setTimeout(res => {
  535. location.href = '/pages/index/index';
  536. }, 800);
  537. }
  538. }
  539. // #endif
  540. }
  541. };
  542. </script>
  543. <style lang="scss">
  544. page {
  545. background: #fff;
  546. }
  547. .wechat_login {
  548. padding: 72rpx 34rpx;
  549. .img image {
  550. width: 100%;
  551. }
  552. .btn-wrapper {
  553. margin-top: 86rpx;
  554. padding: 0 66rpx;
  555. button {
  556. width: 100%;
  557. height: 86rpx;
  558. line-height: 86rpx;
  559. margin-bottom: 40rpx;
  560. border-radius: 120rpx;
  561. font-size: 30rpx;
  562. &.btn1 {
  563. color: #fff;
  564. }
  565. &.btn2 {
  566. color: #666666;
  567. border: 1px solid #666666;
  568. }
  569. }
  570. }
  571. }
  572. .title-bar {
  573. position: relative;
  574. display: flex;
  575. align-items: center;
  576. justify-content: center;
  577. font-size: 36rpx;
  578. }
  579. .icon {
  580. position: absolute;
  581. left: 30rpx;
  582. top: 0;
  583. display: flex;
  584. align-items: center;
  585. justify-content: center;
  586. width: 86rpx;
  587. height: 86rpx;
  588. image {
  589. width: 50rpx;
  590. height: 50rpx;
  591. }
  592. }
  593. </style>