login.vue 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222
  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:true,
  36. shopId:'',
  37. }
  38. },
  39. onLoad(opt) {
  40. this.screenHeight = uni.getSystemInfoSync().windowHeight;
  41. // console.log( this.screenHeight)
  42. this.wxOpendata=uni.getStorageSync("wxOpendata");
  43. this.wxdata=uni.getStorageSync("wxdata");
  44. /* if(this.wxOpendata){
  45. this.isload=true;
  46. }else{
  47. uni.redirectTo({
  48. url:'empower?type=1'
  49. })
  50. } */
  51. this.shopId=opt.shopId
  52. this.wxOpendata.shopID=this.shopId;
  53. uni.setStorage({
  54. key: 'wxOpendata',
  55. data: this.wxOpendata,
  56. success: function () {
  57. }
  58. });
  59. },
  60. methods: {
  61. goTreaty(){
  62. uni.navigateTo({
  63. url:'../me/treaty'
  64. })
  65. },
  66. goIntimity(){
  67. uni.navigateTo({
  68. url:'../me/intimity'
  69. })
  70. },
  71. getPhoneNumber: function(e) {
  72. console.log(e.detail);
  73. this.wxPhoneData=e.detail;
  74. this.gologin()
  75. },
  76. gologin(){
  77. /* if (this.privacyCk == false) {
  78. uni.showToast({
  79. title: '您需要先同意相关服务协议与隐私政策',
  80. icon: 'none',
  81. duration: 3000
  82. });
  83. return
  84. } */
  85. var that=this;
  86. this.$http('km66MiniApp/sys/wxLogin', {
  87. openID:this.wxOpendata.openid,
  88. encrypData:this.wxPhoneData.encryptedData,
  89. iv:this.wxPhoneData.iv,
  90. sessionKey:this.wxOpendata.session_key,
  91. nickName:this.wxdata.userInfo.nickName,
  92. headUrl:this.wxdata.userInfo.avatarUrl,
  93. shopID:this.shopId,
  94. //shopID:"1F12DB68-D8E8-4B76-9E20-287ACB72889F",
  95. },).then(res => {
  96. //console.log(res)
  97. uni.hideLoading();
  98. if(res.code==0){
  99. uni.setStorage({
  100. key: 'logindata',
  101. data: true,
  102. success: function () {
  103. }
  104. });
  105. uni.showToast({
  106. title: '登录成功',
  107. icon:'none',
  108. duration: 3000
  109. });
  110. /* uni.switchTab({
  111. url:'../home/home'
  112. }) */
  113. uni.navigateTo({
  114. url:'../index/index'
  115. })
  116. }else{
  117. uni.showToast({
  118. title: res.msg,
  119. icon:'none',
  120. duration: 3000
  121. });
  122. }
  123. })
  124. },
  125. privacyClick(){
  126. this.privacyCk=!this.privacyCk
  127. },
  128. iphoneLogin(){
  129. uni.navigateTo({
  130. url:'iphoneLogin'
  131. })
  132. },
  133. }
  134. }
  135. </script>
  136. <style scoped>
  137. .bgimg {
  138. display: contents;
  139. overflow: hidden;
  140. position: relative;
  141. }
  142. .container{
  143. width: 100%;
  144. min-height: 100%;
  145. background: url('http://123.56.219.146:10086/keepCar/keepCarHome.png') ;
  146. background-size: 100%;
  147. }
  148. .loginLogo{
  149. width: 220rpx;height: 133rpx;
  150. }
  151. .box{
  152. padding-top: 20vh;
  153. padding-left: 58rpx;
  154. padding-right: 58rpx;
  155. }
  156. .wxlogin{
  157. width: 634rpx;
  158. height: 88rpx;
  159. background: linear-gradient(135deg, #FD5300 0%, #FF270A 100%) #FF2400;
  160. border-radius: 44rpx;
  161. line-height: 88rpx;
  162. text-align: center;
  163. color: #FFFFFF;
  164. font-size: 30rpx;
  165. margin-top: 200rpx;
  166. }
  167. .iphoneLogin{
  168. width: 634rpx;
  169. height: 88rpx;
  170. background: rgba(255,255,255,0.3);
  171. border-radius: 44rpx;
  172. line-height: 88rpx;
  173. text-align: center;
  174. color: #FFFFFF;
  175. font-size: 30rpx;
  176. margin-top: 50rpx;
  177. }
  178. .privacy{
  179. display: flex;
  180. justify-content: center;
  181. font-size: 24rpx;
  182. color: #CCCCCC;
  183. padding-top: 34rpx;
  184. }
  185. .imgPrivacy{
  186. width: 28rpx;
  187. height: 28rpx;
  188. margin-top: 2rpx;
  189. margin-right: 10rpx;
  190. }
  191. .span1{
  192. color: #FF4F00;
  193. }
  194. .nock{
  195. width: 22rpx;
  196. height: 22rpx;
  197. border-radius: 50%;
  198. border:2px solid #AEAEAE;
  199. margin-top: 2rpx;
  200. margin-right: 10rpx;
  201. }
  202. </style>