login.vue 14 KB

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