login.vue 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224
  1. <template>
  2. <view class="container">
  3. <video :src="`${assetsUrl}login_bg${parseInt(Math.random()*6)+1}.mp4`" class="l-video" autoplay loop :controls="false" muted object-fit="cover" :enable-progress-gesture="false">
  4. <image class="lv-logo" :src="`${assetsUrl}login-sugar.png`"></image>
  5. </video>
  6. <view class="lv-box flex-center">
  7. <image class="lv-wechat" :src="`${assetsUrl}login-ph.png`" @click="toPhoneLogin"></image>
  8. <button class="btn" open-type="getPhoneNumber" @getphonenumber="bindGetPhoneNumber">
  9. <image class="lv-phone" :src="`${assetsUrl}login-we.png`" ></image>
  10. </button>
  11. </view>
  12. <view class="lv-pro font22">
  13. 登录即代表您已阅读并同意<text @click="toUserService">《用户服务协议》</text> 和 <text @click="toPrivate">《隐私政策》</text>
  14. </view>
  15. </view>
  16. </template>
  17. <script>
  18. export default {
  19. data() {
  20. return {
  21. assetsUrl:this.$util.assetsUrl
  22. }
  23. },
  24. mounted() {
  25. },
  26. methods: {
  27. toPhoneLogin(){
  28. console.log('123')
  29. uni.navigateTo({
  30. url:'/pages/login/loginByPhone'
  31. })
  32. },
  33. bindGetPhoneNumber(e){
  34. console.log(e.detail);
  35. uni.showLoading({
  36. mask:true,
  37. title:'正在登录'
  38. })
  39. if(e.detail.errMsg==='getPhoneNumber:ok'){
  40. let appConfig=uni.getAccountInfoSync();
  41. let deviceConfig=uni.getSystemInfoSync();
  42. this.$api.login.wxLogin({
  43. scene: "WxMPLogin",
  44. miniProgramEncryUserInfoParam:{
  45. encryptedData:e.detail.encryptedData,
  46. iv:e.detail.iv,
  47. code:e.detail.code,
  48. deviceCode:deviceConfig.deviceId,
  49. pkgCate:"JyPark",
  50. platform:"WechatMP",
  51. appVersion:appConfig.miniProgram.version||'1.0.0',
  52. },
  53. wxLoginInfo:{
  54. openId:uni.getStorageSync('openId')||null,
  55. unionId:uni.getStorageSync('unionId')||null
  56. }
  57. }).then(res=>{
  58. if(res.data.frozen){
  59. uni.showToast({
  60. icon:"none",
  61. title:res.data.msg
  62. });
  63. }
  64. else if(res.data.succ){
  65. uni.setStorageSync('LL_Ukn',res.data.userToken.ukn);
  66. uni.setStorageSync('token',res.data.userToken.token);
  67. uni.setStorageSync('userInfo',JSON.stringify(res.data));
  68. uni.setStorageSync('user',JSON.stringify(res.data.userToken.user));
  69. this.$api.public.aliossCdn({}).then(cdnRes=>{
  70. this.$store.commit('setImageCdn',cdnRes.data.pictureCdn);
  71. this.$store.commit('setVideoCdn',cdnRes.data.videoCdn);
  72. })
  73. if(res.data.isNew){
  74. uni.navigateTo({
  75. url:'/pages/info/sex'
  76. })
  77. return;
  78. }
  79. this.getMineDetail(res.data.regStepNew);
  80. }
  81. else{
  82. uni.showToast({
  83. title:res.data.msg,icon:'none'
  84. })
  85. }
  86. uni.hideLoading();
  87. }).catch(err=>{
  88. uni.hideLoading();
  89. console.log(err);
  90. })
  91. }else{
  92. uni.hideLoading();
  93. uni.showToast({
  94. icon:'none',
  95. mask:true,
  96. title:'授权拒绝,请重试'
  97. })
  98. }
  99. },
  100. getMineDetail(regStepNew){
  101. let step=uni.getStorageSync('regStep')||regStepNew;
  102. switch(step){
  103. case 'Sex':
  104. uni.navigateTo({
  105. url:'/pages/info/sex'
  106. })
  107. break;
  108. case 'SocialImage':
  109. uni.navigateTo({
  110. url:'/pages/info/figure'
  111. })
  112. break;
  113. case 'SocialData':
  114. uni.navigateTo({
  115. url:'/pages/info/datum'
  116. })
  117. break;
  118. case 'CityStay':
  119. uni.navigateTo({
  120. url:'/pages/info/city'
  121. })
  122. break;
  123. case 'WxInfo':
  124. uni.navigateTo({
  125. url:'/pages/info/wechat'
  126. })
  127. break;
  128. case 'Basic':
  129. case 'Index':
  130. let user=JSON.parse(uni.getStorageSync('user'));
  131. this.$api.public.mineDetail({
  132. getAlbum:true,
  133. completeUser:user
  134. }).then(res=>{
  135. this.$store.commit('setUserInfo',res.data);
  136. uni.setStorageSync('userInfo',JSON.stringify(res.data));//正式环境删除
  137. uni.setStorageSync('autoLogin','true');//正式环境删除
  138. })
  139. uni.switchTab({
  140. url:'/pages/friends/friends'
  141. })
  142. break;
  143. }
  144. },
  145. toUserService(){
  146. uni.navigateTo({
  147. url:`/pages/webview/webview?url=${this.$util.protocal.userAgreement}`
  148. })
  149. },
  150. toPrivate(){
  151. uni.navigateTo({
  152. url:`/pages/webview/webview?url=${this.$util.protocal.privacy}`
  153. })
  154. }
  155. }
  156. }
  157. </script>
  158. <style lang="scss" scoped>
  159. .container{
  160. width: 100vw;
  161. height: 100vh;
  162. .l-video{
  163. width: 100vw;
  164. height: 100vh;
  165. position: relative;
  166. .lv-logo{
  167. position: absolute;
  168. z-index: 10;
  169. top: 256rpx;
  170. left: 58rpx;
  171. width: 372rpx;
  172. height: 120rpx;
  173. }
  174. }
  175. .lv-box{
  176. position: absolute;
  177. bottom: 232rpx;
  178. width: 100%;
  179. z-index: 99999;
  180. .lv-wechat{
  181. width: 96rpx;
  182. height: 96rpx;
  183. }
  184. .btn{
  185. width: 486rpx;
  186. height: 96rpx;
  187. position: relative;
  188. margin-left: 50rpx;
  189. margin: 0;
  190. padding: 0;
  191. margin-left: 30rpx;
  192. .lv-phone{
  193. width: 486rpx;
  194. height: 96rpx;
  195. }
  196. }
  197. }
  198. .lv-pro{
  199. color: #ffffff;
  200. position: absolute;
  201. z-index: 10;
  202. bottom: 160rpx;
  203. height: 25rpx;
  204. line-height: 25rpx;
  205. width: 100%;
  206. text-align: center;
  207. }
  208. }
  209. </style>