login.vue 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207
  1. <template>
  2. <view>
  3. <view class="container" :style="'height:'+ screenHeight +'px !important;'" v-if="isload">
  4. <!-- <image :src="bgImg" mode="" class="bgimg"></image> -->
  5. <view class="box" >
  6. <image src="../../static/img/login_text.png" mode="" class="loginLogo"></image>
  7. <view class="" >
  8. <button class="wxlogin" open-type="getPhoneNumber" @getphonenumber="getPhoneNumber" >微信用户快捷登录</button>
  9. </view>
  10. <view class="iphoneLogin" @click="iphoneLogin">使用手机号登录</view>
  11. <view>
  12. </view>
  13. <view class="privacy" @click="privacyClick">
  14. <image src="../../static/img/login_icon_checked.png" mode="" class="imgPrivacy" v-show="privacyCk"></image>
  15. <view class="nock" v-show="!privacyCk"></view>
  16. <span>同意</span> <span class="span1" @click.stop="goTreaty">《服务协议》</span>
  17. <span>与</span> <span class="span1" @click.stop="goIntimity">《隐私政策》 </span>
  18. </view>
  19. </view>
  20. </view>
  21. </view>
  22. </template>
  23. <script>
  24. export default {
  25. data() {
  26. return {
  27. screenHeight: '',
  28. privacyCk:true,
  29. wxdata:'',
  30. wxCode:'',
  31. openID:'',
  32. session_key:'',
  33. wxPhoneData:'',
  34. wxOpendata:'',
  35. isload:false,
  36. }
  37. },
  38. onLoad() {
  39. this.screenHeight = uni.getSystemInfoSync().windowHeight;
  40. // console.log( this.screenHeight)
  41. this.wxOpendata=uni.getStorageSync("wxOpendata");
  42. this.wxdata=uni.getStorageSync("wxdata");
  43. if(this.wxOpendata){
  44. this.isload=true;
  45. }else{
  46. uni.redirectTo({
  47. url:'empower?type=1'
  48. })
  49. }
  50. },
  51. methods: {
  52. goTreaty(){
  53. uni.navigateTo({
  54. url:'../me/treaty'
  55. })
  56. },
  57. goIntimity(){
  58. uni.navigateTo({
  59. url:'../me/intimity'
  60. })
  61. },
  62. getPhoneNumber: function(e) {
  63. console.log(e.detail);
  64. this.wxPhoneData=e.detail;
  65. this.gologin()
  66. },
  67. gologin(){
  68. if (this.privacyCk == false) {
  69. uni.showToast({
  70. title: '您需要先同意相关服务协议与隐私政策',
  71. icon: 'none',
  72. duration: 3000
  73. });
  74. return
  75. }
  76. var that=this;
  77. this.$http('worldKeepCar/sys/wxLogin', {
  78. openID:this.wxOpendata.openid,
  79. encrypData:this.wxPhoneData.encryptedData,
  80. iv:this.wxPhoneData.iv,
  81. sessionKey:this.wxOpendata.session_key,
  82. nickName:this.wxdata.userInfo.nickName,
  83. headUrl:this.wxdata.userInfo.avatarUrl,
  84. },).then(res => {
  85. //console.log(res)
  86. uni.hideLoading();
  87. if(res.code==0){
  88. uni.setStorage({
  89. key: 'logodata',
  90. data: res.data,
  91. success: function () {
  92. }
  93. });
  94. uni.showToast({
  95. title: '登录成功',
  96. icon:'none',
  97. duration: 3000
  98. });
  99. uni.switchTab({
  100. url:'../index/index'
  101. })
  102. }else{
  103. uni.showToast({
  104. title: res.msg,
  105. icon:'none',
  106. duration: 3000
  107. });
  108. }
  109. })
  110. },
  111. privacyClick(){
  112. this.privacyCk=!this.privacyCk
  113. },
  114. iphoneLogin(){
  115. uni.navigateTo({
  116. url:'iphoneLogin'
  117. })
  118. },
  119. }
  120. }
  121. </script>
  122. <style scoped>
  123. .bgimg {
  124. display: contents;
  125. overflow: hidden;
  126. position: relative;
  127. }
  128. .container{
  129. width: 100%;
  130. min-height: 100%;
  131. background: url('http://phone.66km.cn:8088/keepCar/keepCarHome.png') ;
  132. background-size: 100%;
  133. }
  134. .loginLogo{
  135. width: 220rpx;height: 133rpx;
  136. }
  137. .box{
  138. padding-top: 20vh;
  139. padding-left: 58rpx;
  140. padding-right: 58rpx;
  141. }
  142. .wxlogin{
  143. width: 634rpx;
  144. height: 88rpx;
  145. background: linear-gradient(135deg, #FD5300 0%, #FF270A 100%) #FF2400;
  146. border-radius: 44rpx;
  147. line-height: 88rpx;
  148. text-align: center;
  149. color: #FFFFFF;
  150. font-size: 30rpx;
  151. margin-top: 200rpx;
  152. }
  153. .iphoneLogin{
  154. width: 634rpx;
  155. height: 88rpx;
  156. background: rgba(255,255,255,0.3);
  157. border-radius: 44rpx;
  158. line-height: 88rpx;
  159. text-align: center;
  160. color: #FFFFFF;
  161. font-size: 30rpx;
  162. margin-top: 50rpx;
  163. }
  164. .privacy{
  165. display: flex;
  166. justify-content: center;
  167. font-size: 24rpx;
  168. color: #CCCCCC;
  169. padding-top: 34rpx;
  170. }
  171. .imgPrivacy{
  172. width: 28rpx;
  173. height: 28rpx;
  174. margin-top: 2rpx;
  175. margin-right: 10rpx;
  176. }
  177. .span1{
  178. color: #FF4F00;
  179. }
  180. .nock{
  181. width: 22rpx;
  182. height: 22rpx;
  183. border-radius: 50%;
  184. border:2px solid #AEAEAE;
  185. margin-top: 2rpx;
  186. margin-right: 10rpx;
  187. }
  188. </style>