getmobile.vue 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. <template>
  2. <view>
  3. <uni-popup ref="telmodal" type="bottom" :mask-click="false">
  4. <view class="getphone">
  5. <view @click="close"><text>×</text></view>
  6. <view>手机号授权提醒</view>
  7. <view>获取司机手机号码授权,同步换电云数据</view>
  8. <view><button open-type="getPhoneNumber" @getphonenumber="getPhoneNumber">请授权获取手机号码</button></view>
  9. </view>
  10. </uni-popup>
  11. </view>
  12. </template>
  13. <script>
  14. export default {
  15. name:"getmobile",
  16. data() {
  17. return {
  18. };
  19. },
  20. mounted() {
  21. this.$refs.telmodal.open('bottom')
  22. },
  23. methods:{
  24. close(){
  25. // this.$refs.telmodal.close()
  26. this.$utils.switchTab('index/index');
  27. },
  28. getPhoneNumber(e){
  29. const userinfo=this.$store.state.users;
  30. // wx.login({
  31. // success(res){
  32. // console.log(res.code)
  33. // }
  34. // })
  35. if(userinfo && e.detail.errMsg == "getPhoneNumber:ok"){
  36. let params={
  37. encryptedData:e.detail.encryptedData,
  38. iv:e.detail.iv,
  39. openId:userinfo.openId,
  40. nickName:userinfo.nickName,
  41. avatar:userinfo.avatarUrl
  42. }
  43. this.$http.wxLogin(params).then(res=>{
  44. if(res.data){
  45. this.$store.commit("UPDATEMOBILE",res.data.telephone);
  46. this.$store.commit("UPDATEUSERS",res.data);
  47. this.$emit('updatetopinfo',res.data)
  48. this.$refs.telmodal.close();
  49. }
  50. }).catch(error=>{
  51. this.$utils.msg(error);
  52. });
  53. }else{
  54. this.$utils.navigateTo('public/login');
  55. }
  56. },
  57. }
  58. }
  59. </script>
  60. <style lang="scss" scoped>
  61. .getphone{
  62. background-color: #fff;
  63. border-top-left-radius: 20rpx;
  64. border-top-right-radius: 20rpx;
  65. display: flex;
  66. flex-direction: column;
  67. text-align: center;
  68. position: relative;
  69. view:first-child{
  70. right: 10rpx;
  71. top:-10rpx;
  72. font-size: 54rpx;
  73. color: #7e7e80;
  74. position: absolute;
  75. }
  76. view:nth-child(2){
  77. font-weight: bold;
  78. padding-top: 30rpx;
  79. }
  80. view:nth-child(3){
  81. color: #7e7e80;
  82. padding-top: 20rpx;
  83. }
  84. button{
  85. width: 80%;
  86. margin: 25rpx auto;
  87. background-color:#58be6b ;
  88. color: #fff;
  89. }
  90. }
  91. </style>