login.vue 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273
  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. uni.navigateTo({
  29. url:'/pages/login/loginByPhone'
  30. })
  31. },
  32. bindGetPhoneNumber(e){
  33. console.log(e.detail);
  34. uni.showLoading({
  35. mask:true,
  36. title:'正在登录'
  37. })
  38. uni.login({//免密登录
  39. success:(res)=>{
  40. this.$api.login.wxLogin({
  41. scene: "WxMPLogin",
  42. miniProgramEncryUserInfoParam:{
  43. jsCode:res.code
  44. }
  45. }).then(result=>{
  46. if(result.status==='Succ'){
  47. if(result.data.wxLoginInfo){//新用户保存用户openid,unionId
  48. uni.setStorageSync('openId',result.data.wxLoginInfo.openId);
  49. uni.setStorageSync('unionId',result.data.wxLoginInfo.unionId);
  50. }
  51. if(e.detail.errMsg==='getPhoneNumber:ok'){
  52. let appConfig=uni.getAccountInfoSync();
  53. let deviceConfig=uni.getSystemInfoSync();
  54. this.$api.login.wxLogin({
  55. scene: "WxMPLogin",
  56. miniProgramEncryUserInfoParam:{
  57. encryptedData:e.detail.encryptedData,
  58. iv:e.detail.iv,
  59. code:e.detail.code,
  60. deviceCode:deviceConfig.deviceId,
  61. pkgCate:"JyPark",
  62. platform:"WechatMP",
  63. appVersion:appConfig.miniProgram.version||'1.0.0',
  64. },
  65. wxLoginInfo:{
  66. openId:uni.getStorageSync('openId')||null,
  67. unionId:uni.getStorageSync('unionId')||null
  68. },
  69. androidMarket:'WechatMP',
  70. model:deviceConfig.model
  71. }).then(res=>{
  72. if(res.data.frozen){
  73. uni.showToast({
  74. icon:"none",
  75. title:res.data.msg
  76. });
  77. }
  78. else if(res.data.succ){
  79. uni.setStorageSync('LL_Ukn',res.data.userToken.ukn);
  80. uni.setStorageSync('token',res.data.userToken.token);
  81. uni.setStorageSync('userInfo',JSON.stringify(res.data));
  82. uni.setStorageSync('user',JSON.stringify(res.data.userToken.user));
  83. uni.setStorageSync('isLogin','yes');
  84. this.$api.public.aliossCdn({}).then(cdnRes=>{
  85. this.$store.commit('setImageCdn',cdnRes.data.pictureCdn);
  86. this.$store.commit('setVideoCdn',cdnRes.data.videoCdn);
  87. uni.setStorageSync('imageCdn',cdnRes.data.pictureCdn);
  88. uni.setStorageSync('videoCdn',cdnRes.data.videoCdn);
  89. });
  90. if(res.data.isNew){
  91. uni.navigateTo({
  92. url:'/pages/info/sex'
  93. })
  94. return;
  95. }
  96. //全局分享
  97. uni.onAppRoute(()=>{
  98. const pages=getCurrentPages();
  99. let page=pages[pages.length-1];
  100. if(page.route!=='pages/friends/user'){
  101. let inviteCode=JSON.parse(uni.getStorageSync('userInfo')).inviteCode
  102. page.onShareAppMessage=()=>{
  103. return{
  104. title:'我在糖果公园等你哟~',
  105. page:`pages/friends/friends?inviteCode=${inviteCode}`,
  106. imageUrl:'https://zhenyanapp-gen.oss-cn-qingdao.aliyuncs.com/wechat-mini-pro/app-share.png'
  107. }
  108. }
  109. }
  110. })
  111. this.getMineDetail(res.data.regStepNew);
  112. }
  113. else{
  114. uni.showToast({
  115. title:res.data.msg,icon:'none'
  116. })
  117. }
  118. uni.hideLoading();
  119. }).catch(err=>{
  120. uni.hideLoading();
  121. console.log(err);
  122. })
  123. }else{
  124. uni.hideLoading();
  125. uni.showToast({
  126. icon:'none',
  127. mask:true,
  128. title:'授权拒绝,请重试'
  129. })
  130. }
  131. }
  132. })
  133. },
  134. fail: (err) => {
  135. uni.hideLoading();
  136. uni.showToast({
  137. icon:'none',
  138. mask:true,
  139. title:'授权拒绝,请重试'
  140. })
  141. }
  142. });
  143. },
  144. getMineDetail(regStepNew){
  145. let step=uni.getStorageSync('regStep')||regStepNew;
  146. switch(step){
  147. case 'Sex':
  148. uni.navigateTo({
  149. url:'/pages/info/sex'
  150. })
  151. break;
  152. case 'SocialImage':
  153. uni.navigateTo({
  154. url:'/pages/info/figure'
  155. })
  156. break;
  157. case 'SocialData':
  158. uni.navigateTo({
  159. url:'/pages/info/datum'
  160. })
  161. break;
  162. case 'CityStay':
  163. uni.navigateTo({
  164. url:'/pages/info/city'
  165. })
  166. break;
  167. case 'WxInfo':
  168. uni.navigateTo({
  169. url:'/pages/info/wechat'
  170. })
  171. break;
  172. case 'Basic':
  173. case 'Index':
  174. let user=JSON.parse(uni.getStorageSync('user'));
  175. this.$api.public.mineDetail({
  176. getAlbum:true,
  177. completeUser:user
  178. }).then(res=>{
  179. this.$store.commit('setUserInfo',res.data);
  180. uni.setStorageSync('userInfo',JSON.stringify(res.data));//正式环境删除
  181. uni.setStorageSync('autoLogin','true');//正式环境删除
  182. })
  183. uni.switchTab({
  184. url:'/pages/friends/friends'
  185. })
  186. break;
  187. }
  188. },
  189. toUserService(){
  190. uni.navigateTo({
  191. url:`/pages/webview/webview?url=${this.$util.protocal.userAgreement}`
  192. })
  193. },
  194. toPrivate(){
  195. uni.navigateTo({
  196. url:`/pages/webview/webview?url=${this.$util.protocal.privacy}`
  197. })
  198. }
  199. }
  200. }
  201. </script>
  202. <style lang="scss" scoped>
  203. .container{
  204. width: 100vw;
  205. height: 100vh;
  206. .l-video{
  207. width: 100vw;
  208. height: 100vh;
  209. position: relative;
  210. z-index: 1;
  211. .lv-logo{
  212. position: absolute;
  213. z-index: 10;
  214. top: 256rpx;
  215. left: 58rpx;
  216. width: 372rpx;
  217. height: 120rpx;
  218. }
  219. }
  220. .lv-box{
  221. position: absolute;
  222. bottom: 232rpx;
  223. width: 100%;
  224. z-index: 99999;
  225. .lv-wechat{
  226. width: 96rpx;
  227. height: 96rpx;
  228. }
  229. .btn{
  230. width: 486rpx;
  231. height: 96rpx;
  232. position: relative;
  233. margin-left: 50rpx;
  234. margin: 0;
  235. padding: 0;
  236. margin-left: 30rpx;
  237. .lv-phone{
  238. width: 486rpx;
  239. height: 96rpx;
  240. }
  241. }
  242. }
  243. .lv-pro{
  244. color: #ffffff;
  245. position: absolute;
  246. z-index: 10;
  247. bottom: 160rpx;
  248. height: 25rpx;
  249. line-height: 25rpx;
  250. width: 100%;
  251. text-align: center;
  252. }
  253. }
  254. </style>