login.vue 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622
  1. <template>
  2. <view class="body" :style="{height:screenHeight}">
  3. <image v-if="isDevelop" class="login-bg" :src="loginBg" mode="widthFix"></image>
  4. <u-toast ref="uToast"></u-toast>
  5. <view style="height: 40%;position: relative;z-index: 10;">
  6. <view class="logo-wrap" :class="{dev:isDevelop}">
  7. <img :src="logoSrc" class="logo" :class="{dev:isDevelop}" alt="">
  8. <!-- <img :src="sitename" class="sitename" alt=""> -->
  9. <!-- <u--image :src="logoSrc" width="200rpx" height="200rpx"></u--image>
  10. <u--image :src="sitename" width="460rpx" height="142rpx"></u--image> -->
  11. </view>
  12. <!-- <u-button text="getUserProfile" type="success" :hairline="false" throttleTime="2000" shape="circle" open-type="getUserProfile"
  13. @click="getUserProfile"></u-button> -->
  14. <!-- <u-button v-if="loginBtn" text="手机号快捷登录" type="success" :hairline="false" throttleTime="2000" shape="circle"
  15. @click="openAuth"></u-button> -->
  16. <view class="btn-wrap" style="margin:94rpx">
  17. <!-- #ifdef MP -->
  18. <u-button
  19. v-if="loginBtn&&checked.length>0"
  20. :hair-line='false'
  21. type="error"
  22. color="#ED0000"
  23. throttleTime="2000"
  24. shape="circle"
  25. open-type="getPhoneNumber"
  26. @getphonenumber="authPhone">登录
  27. </u-button>
  28. <u-button
  29. v-else
  30. :hair-line='false'
  31. type="error"
  32. color="#ED0000"
  33. @click="disabledClick"
  34. shape="circle">登录
  35. </u-button>
  36. <!-- #endif -->
  37. <!-- #ifdef H5 -->
  38. <u-button
  39. :hair-line='false'
  40. type="error"
  41. color="#ED0000"
  42. @click="disabledClick"
  43. shape="circle">登录
  44. </u-button>
  45. <!-- #endif -->
  46. </view>
  47. <view class="rule-wrap u-flex u-flex-wrap u-row-center">
  48. <u-checkbox-group v-model="checked" @change="checkboxChange" placement="row">
  49. <u-checkbox activeColor="#1677FF" name="同意" labelSize="24rpx" shape="circle" label="我已阅读并同意"></u-checkbox>
  50. </u-checkbox-group>
  51. <text class="link" @click="$u.route('/pages/login/regulation',{regulationName:'用户服务协议',type:1})">《用户服务协议》</text>
  52. 和<text class="link" @click="$u.route('/pages/login/regulation',{regulationName:'用户隐私政策',type:2})">《用户隐私政策》</text>
  53. </view>
  54. </view>
  55. <!-- 微信获取手机号弹窗 -->
  56. <!-- <u-modal :show="showAuthorizePhone" :show-title="false"
  57. :show-confirm-button="false">
  58. <view class="slot-content">
  59. <div class="auth-card">
  60. <div class="img">
  61. <img class="avatar-img" :src="logoSrc" mode="widthFix">
  62. </div>
  63. <div class="title">{{bname}}</div>
  64. <div class="content">申请获得您的手机号</div>
  65. </div>
  66. <div class="auth-btncard u-flex u-row-between">
  67. <div class="btn-unok"><u-button :hair-line='false' :custom-style="customStyleUnOk" @click="showAuthorizePhone=false">拒绝</u-button></div>
  68. <div class="btn-ok"><u-button :hair-line='false' :custom-style="customStyleOk" open-type="getPhoneNumber" @getphonenumber="authPhone"> 允许</u-button></div>
  69. </div>
  70. </view>
  71. </u-modal> -->
  72. <!-- 微信获取用户头像昵称弹窗 -->
  73. <!-- <u-modal :show="showAuthorizeUser" :show-title="false"
  74. :show-confirm-button="false">
  75. <view class="slot-content">
  76. <div class="auth-card">
  77. <div class="img">
  78. <img class="avatar-img"
  79. :src="logoSrc"
  80. mode="widthFix">
  81. </div>
  82. <div class="title">{{bname}}</div>
  83. <div class="content">邀请您补全个人信息<br></br>(昵称、头像)</div>
  84. <div style="margin-left: 100rpx;margin-right: 100rpx">
  85. <u-form :model="user" ref="uForm">
  86. <u-form-item label="头像">
  87. <button class="avatar-wrapper" open-type="chooseAvatar" @chooseavatar="onChooseAvatar" slot="right">
  88. <image class="avatar" :src="user.avatar"></image>
  89. </button>
  90. </u-form-item>
  91. <u-form-item label="昵称">
  92. <input type="nickname" class="weui-input u-border-bottom" @blur="nickNameInput" placeholder="请输入昵称"/>
  93. </u-form-item>
  94. </u-form>
  95. </div>
  96. </div>
  97. <div class="auth-btncard">
  98. <div class="btn-unok"><u-button :hair-line='false' :custom-style="customStyleUnOk" @click="showAuthorizeUser=false"> 拒绝</u-button></div>
  99. <div class="btn-ok"><u-button :hair-line='false' :custom-style="customStyleOk" @click="authUser"> 允许</u-button></div>
  100. </div>
  101. </view>
  102. </u-modal> -->
  103. </view>
  104. </template>
  105. <script>
  106. export default {
  107. data() {
  108. return {
  109. staticUrl:this.$commonConfig.staticUrl,
  110. checked:false,
  111. checkboxVal:null,
  112. loginBtn:true,
  113. bname:'旭烁集团',
  114. //屏幕高度
  115. screenHeight: "",
  116. loginBg: `${this.$commonConfig.staticUrl}/img/login-page-bg-dev.png`,
  117. logoSrc: `${this.$commonConfig.staticUrl}/img/logo.png`,
  118. // sitename:"/static/sitename.png",
  119. miniappLoginInfo:null,
  120. hasUserInfo:false,
  121. userInfo: null,
  122. user:{
  123. avatar:'https://mmbiz.qpic.cn/mmbiz/icTdbqWNOwNRna42FI242Lcia07jQodd2FJGIYQfG0LAJGFxM4FbnQP6yfMxBgJ0F3YRqJCJ1aPAK2dQagdusBZg/0',
  124. name:'',
  125. mobile:'',
  126. },
  127. code: '',
  128. showAuthorizeUser: false,
  129. showAuthorizePhone: false,
  130. customStyleUnOk:{},
  131. customStyleOk:{'margin-left': '30px',color:'#00A447'},
  132. backUrl:null,
  133. scene:'',
  134. retailId:'',
  135. isDevelop:undefined,
  136. };
  137. },
  138. onLoad(e) {
  139. // console.log('envVersion',wx.getAccountInfoSync().miniProgram.envVersion);
  140. console.log('this.$isDevelop',this.$isDevelop);
  141. if(this.$isDevelop){
  142. this.isDevelop = true;
  143. this.logoSrc = `${this.$commonConfig.staticUrl}/img/logo-dev.png`;
  144. }
  145. // console.log("onLoad e=======",e)
  146. if(e&&e.scene){
  147. this.scene = e.scene;
  148. // console.log('login e.scene',e.scene);
  149. this.scene&&uni.setStorage({
  150. key:'scene',
  151. data:e.scene,
  152. // timestamp: new Date().getTime(), // 添加时间戳
  153. success: function (res) {
  154. // console.log('onLoad success scene====',res);
  155. }
  156. });
  157. }
  158. // #ifdef H5
  159. if(e&&e.code) { // 微信第三方登录成功
  160. this.code = e.code
  161. this.login(e)
  162. }
  163. // #endif
  164. let that = this;
  165. //获取屏幕高度,我的项目再store里已经取到了
  166. uni.getSystemInfo({
  167. success: (res) => {
  168. this.screenHeight = res.windowHeight + "px"
  169. }
  170. });
  171. uni.getStorage({
  172. key: 'backUrl',
  173. success: function (res) {
  174. that.backUrl = '/'+res.data;
  175. }
  176. });
  177. },
  178. onShow() {
  179. // #ifdef H5
  180. let pages = getCurrentPages(); //当前页面栈
  181. // console.log("pages=====",pages)
  182. // #endif
  183. // #ifdef MP
  184. // uni.showLoading({
  185. // mask:true
  186. // });
  187. this.getChatCode();
  188. // setTimeout(() => {
  189. // this.openAuth();
  190. // // this.showAuthorizeUser = true //弹出头像用户名
  191. // }, 100);
  192. // #endif
  193. let userInfo = uni.getStorageSync('userInfo');
  194. this.user.name = userInfo.name;
  195. },
  196. methods: {
  197. openAuth(){
  198. this.showAuthorizePhone = true;
  199. // let userInfo = uni.getStorageSync('userInfo')
  200. // console.log('userInfo>>>>>>>>>>>>>>>>>>>>>',userInfo)
  201. // if(userInfo){
  202. // this.showAuthorizeUser = true;
  203. // }else{
  204. // this.showAuthorizePhone = true;
  205. // }
  206. // uni.hideLoading()
  207. },
  208. getChatCode() {
  209. //因为作用域先提前赋值
  210. var that = this
  211. //使用uni封装的一键登录方法
  212. uni.login({
  213. provider: 'weixin',
  214. success(res) {
  215. //成功后带着微信登录返回的code去请求我们的后端
  216. that.code = res.code;
  217. // console.log('code',that.code);
  218. }
  219. })
  220. },
  221. getUserProfile() {
  222. var that = this
  223. uni.getUserProfile({
  224. desc: "获取你的昵称、头像",
  225. success(res) {
  226. // console.log('getUserProfile success',res);
  227. if (res.errMsg == "getUserProfile:ok" && res.userInfo != undefined) {
  228. //我用store来存储一些数据,你可以放到你要放的地方
  229. // console.log(' res.userInfo', res.userInfo);
  230. // that.$u.vuex('wx_user_info.nickName', res.userInfo.nickName);
  231. // that.$u.vuex('wx_user_info.avatarUrl', res.userInfo.avatarUrl);
  232. // that.getChatCode()
  233. }
  234. },
  235. complete(res) {
  236. // console.log('complete',res);
  237. }
  238. })
  239. },
  240. //获取昵称输入内容
  241. // userNameInput(e){
  242. // this.user.nickName = e.detail.value
  243. // },
  244. onChooseAvatar(e) {
  245. console.log('头像信息》')
  246. console.log(e)
  247. this.user.avatar = e.detail.avatarUrl;
  248. },
  249. async authPhone(e){
  250. // console.log('checked',this.checked);
  251. // console.log('detail',e.detail);
  252. let errMsg = e.detail?.errMsg;
  253. if(errMsg!='getPhoneNumber:ok'){
  254. uni.showToast({
  255. title:'您已拒绝使用!',
  256. icon:'error'
  257. })
  258. return
  259. }
  260. this.showAuthorizePhone=false;
  261. this.loginBtn = false;
  262. let _this = this;
  263. console.log('this.scene',this.scene);
  264. if(!this.scene){
  265. await uni.getStorage({
  266. key: 'scene',
  267. success: function (res) {
  268. // console.log('scene====',res.data);
  269. if(res.data){
  270. _this.scene = res.data
  271. }
  272. }
  273. });
  274. }
  275. // this.getMobile()
  276. let mobileData = await this.$u.api.getMobile({code:e.detail.code});
  277. // console.log('mobileData',mobileData);
  278. let mobile = mobileData.data?.mobile;
  279. if(mobile){
  280. this.mobile = mobile
  281. }else{
  282. // uni.showToast({
  283. // title: '没有获取手机号',
  284. // icon:'error',
  285. // duration: 2000
  286. // });
  287. }
  288. this.login(e);
  289. this.loginBtn = true;
  290. },
  291. async login(e){
  292. // console.log('e',e);
  293. let _this = this;
  294. let wxinfo = null
  295. let data = {}
  296. // #ifdef MP
  297. wxinfo = await this.$u.api.wxinfo({code:this.code});
  298. let {openid,sessionKey,unionid} = wxinfo.data;
  299. _this.$u.vuex('vuex_wechatOpenid', openid);
  300. const { errMsg, iv, encryptedData } = e.detail;
  301. if (errMsg !== 'getPhoneNumber:ok') return;
  302. data = {
  303. code: this.code,
  304. encryptedData: encryptedData,
  305. ivStr: iv,
  306. openId:openid,
  307. sessionKey,
  308. sourceType:1,
  309. mobile:this.mobile
  310. }
  311. console.log('this.scene',this.scene);
  312. if(this.scene&&this.scene!='undefined'){
  313. await this.$u.api.uncompress({scene:this.scene}).then(res=>{
  314. // data.performId = res.data.performId;
  315. data.label = res.data.label;
  316. data.retailId = res.data.retailId;
  317. this.retailId = res.data.retailId;
  318. data.retailId&&uni.setStorage({
  319. key:'retailId',
  320. data:data.retailId
  321. });
  322. // console.log('uncompress',res.data);
  323. }).catch(err=>{
  324. console.log('uncompress err',err);
  325. })
  326. }
  327. // #endif
  328. // #ifdef H5
  329. wxinfo = await this.$u.api.wxinfoH5({code:this.code});
  330. let { openid } = wxinfo.data;
  331. data = {
  332. "openId": "",
  333. "h5OpenId": openid,
  334. "mobile": ""
  335. }
  336. // #endif
  337. console.log('----------登陆中',data)
  338. this.$u.api.login(data).then(res=>{
  339. // console.log('微信登录返回结果========',res.data)
  340. _this.$u.vuex('vuex_user_info', res.data);
  341. // _this.$u.vuex('vuex_member_info',res.data);
  342. // uni.setStorageSync('userInfo', res.data)
  343. this.showAuthorizePhone = false;
  344. // uni.removeStorage({
  345. // key:'scene'
  346. // });
  347. // console.log('res.data.userid',res.data.userid);
  348. this.getMemberInfo(res.data.userId);
  349. }).catch(err=>{
  350. console.log('err',err);
  351. this.showAuthorizePhone = false
  352. })
  353. },
  354. handleBindRetail(retailId){
  355. this.$u.api.bindRetail({retailId:retailId}).then(res=>{
  356. console.log('bindRetail',res);
  357. }).catch(err=>{
  358. console.log('bindRetail err',err);
  359. })
  360. },
  361. async getMemberInfo(userid){
  362. // console.log('userid',userid);
  363. let _this = this;
  364. if(this.retailId){
  365. await this.handleBindRetail(this.retailId);
  366. }
  367. this.$u.api.memberInfo({id:userid}).then(res=> {
  368. if(res.code ===200) {
  369. _this.userInfo = res.data;
  370. this.$u.vuex('vuex_member_info', res.data);
  371. // this.$u.vuex('vuex_member_info.avatar', 'https://mmbiz.qpic.cn/mmbiz/icTdbqWNOwNRna42FI242Lcia07jQodd2FJGIYQfG0LAJGFxM4FbnQP6yfMxBgJ0F3YRqJCJ1aPAK2dQagdusBZg/0');
  372. if(!res.data.name){
  373. this.$u.vuex('vuex_member_info.name', '微信用户');
  374. this.updateMemberInfo();
  375. }else{
  376. this.goBack();
  377. }
  378. // 下面需要获取微信头像和昵称
  379. // if(res.data.name){
  380. // _this.hasUserInfo = true;
  381. // _this.userInfo = res.data;
  382. // uni.navigateTo({
  383. // url: '/pages/index/index'
  384. // })
  385. // }else{
  386. // _this.showAuthorizeUser = true
  387. // // uni.hideLoading()
  388. // }
  389. // console.log('---------登陆成功')
  390. }
  391. })
  392. },
  393. goBack(){
  394. let url = this.backUrl&&this.backUrl.length>0?this.backUrl:'/pages/index/index';
  395. // console.log('url',url);
  396. uni.removeStorage({
  397. key: 'backUrl',
  398. success: function (res) {
  399. console.log('goBackurl================',decodeURIComponent(url));
  400. uni.reLaunch({url: decodeURIComponent(url)});
  401. }
  402. });
  403. },
  404. updateMemberInfo(){
  405. let params ={
  406. id:this.userInfo.id,
  407. // avatar:'https://mmbiz.qpic.cn/mmbiz/icTdbqWNOwNRna42FI242Lcia07jQodd2FJGIYQfG0LAJGFxM4FbnQP6yfMxBgJ0F3YRqJCJ1aPAK2dQagdusBZg/0',
  408. name:'微信用户'
  409. };
  410. this.$u.api.updateMemberInfo(params).then(res=>{
  411. this.goBack();
  412. }).catch(err=>{
  413. console.log('err',err);
  414. })
  415. },
  416. authUser(){
  417. let userInfo = this.vuex_user_info || {};
  418. // console.log('this===',this);
  419. // console.log('vuex_user_info===',this.vuex_user_info);
  420. // console.log('userInfo',userInfo);
  421. // console.log('this.user',this.user);
  422. if(!this.user.name){
  423. uni.showToast({
  424. title: '请输入您的昵称!',
  425. icon:'error',
  426. duration: 2000
  427. });
  428. return;
  429. }
  430. userInfo.avatar = this.user.avatar;
  431. userInfo.name = this.user.name;
  432. this.userInfo = userInfo;
  433. uni.setStorageSync('userInfo', userInfo)
  434. this.user.id = userInfo.userid;
  435. let param = {
  436. id:this.user.id,
  437. name:this.user.name,
  438. avatar:this.user.avatar
  439. }
  440. this.$u.api.updateMemberInfo(param).then(res=>{
  441. this.hasUserInfo = true;
  442. this.showAuthorizeUser = false;
  443. uni.navigateTo({
  444. url: '/pages/index/index'
  445. })
  446. }).catch(err=>{
  447. console.log('err',err);
  448. })
  449. },
  450. nickNameInput(e){
  451. this.user.name = e.detail.value
  452. },
  453. checkboxChange(e){
  454. this.checkboxVal = e[0];
  455. },
  456. disabledClick(){
  457. // console.log('checked',this.checked?.length);
  458. // console.log('loginBtn',this.loginBtn);
  459. // #ifdef MP
  460. if(!this.checked||this.checked?.length<=0){
  461. uni.showToast({
  462. title:'请先同意使用条款!',
  463. icon:'none'
  464. })
  465. }else if(this.loginBtn==false){
  466. uni.showToast({
  467. title:'登录中!',
  468. icon:'none'
  469. })
  470. }
  471. // #endif
  472. // #ifdef H5
  473. if(!this.checked||this.checked?.length<=0){
  474. uni.showToast({
  475. title:'请先同意使用条款!',
  476. icon:'none'
  477. })
  478. }else{
  479. uni.showToast({
  480. title:'登录中!',
  481. icon:'none'
  482. })
  483. this.redirectToAuth()
  484. }
  485. // #endif
  486. },
  487. /** 公众号 微信授权登录 */
  488. redirectToAuth() {
  489. const appid = 'wx6490eaa0d20d2be2';
  490. const redirectUri = encodeURIComponent('https://greath5.dev.gztjy.top/pages/login/login');
  491. const authUrl = `https://open.weixin.qq.com/connect/oauth2/authorize?appid=${appid}&redirect_uri=${redirectUri}&response_type=code&scope=snsapi_base&state=STATE#wechat_redirect`;
  492. window.location.href = authUrl;
  493. },
  494. }
  495. }
  496. </script>
  497. <style lang="scss" scoped>
  498. .login-bg{
  499. position: fixed;
  500. left: 0;
  501. right: 0;
  502. top: 0;
  503. width: 100%;
  504. }
  505. .body {
  506. background-color: #fff;
  507. box-sizing: border-box;
  508. text-align: center;
  509. .logo-wrap {
  510. padding-top: 25vh;
  511. &.dev{
  512. padding-top: 530rpx;
  513. margin-bottom: 125rpx;
  514. }
  515. img{
  516. display: block;
  517. margin: 0 auto;
  518. }
  519. .logo{
  520. width: 480rpx;
  521. height: 263rpx;
  522. &.dev{
  523. width: 380rpx;
  524. height: 140rpx;
  525. }
  526. }
  527. .sitename{
  528. width: 460rpx;
  529. height: 142rpx;
  530. }
  531. }
  532. }
  533. //
  534. .auth-btncard{
  535. margin-top: 20px;
  536. .btn-unok{
  537. width: 45%;
  538. float: left;
  539. }
  540. .btn-ok{
  541. width: 45%;
  542. float: left;
  543. margin: 0;
  544. padding: 0;
  545. border: 0px solid transparent; //自定义边框
  546. outline: none; //消除默认点击蓝色边框效果
  547. u-button{
  548. font-size: 16px;
  549. margin: 0;
  550. padding: 0;
  551. // border: 0px solid transparent; //自定义边框
  552. outline: none; //消除默认点击蓝色边框效果
  553. }
  554. }
  555. }
  556. .auth-card{
  557. text-align: center;
  558. .avatar-img{
  559. width: 150rpx;
  560. height: 150rpx;
  561. overflow: hidden;
  562. border-radius: 100%;
  563. margin-top: 30rpx;
  564. }
  565. .title{
  566. font-size: 30rpx;
  567. }
  568. .content{
  569. margin-top: 10rpx;
  570. margin-bottom: 20rpx;
  571. }
  572. }
  573. .avatar-wrapper{
  574. width: 150rpx;
  575. height: 100rpx;
  576. color: #333 !important;
  577. text-align: center !important;
  578. border: none !important;
  579. border-radius:0 !important;
  580. background-color:transparent !important;
  581. }
  582. .avatar-wrapper::after {
  583. border: none !important;
  584. }
  585. .avatar{
  586. width: 100rpx;
  587. height: 100rpx;
  588. overflow: hidden;
  589. border-radius: 100%;
  590. }
  591. .rule-wrap{
  592. position: fixed;
  593. left: 0;
  594. right: 0;
  595. bottom: 20px;
  596. margin: 40rpx auto;
  597. font-size: 24rpx;
  598. line-height: 1.5;
  599. .link{
  600. white-space: nowrap;
  601. color: #1677FF;
  602. }
  603. }
  604. </style>