login.vue 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. <template>
  2. <view>
  3. <image src="../../static/bg.png" mode="" class="bg"></image>
  4. <!-- <button @click="getUserProfile">登录</button> -->
  5. <view class="" style="margin: 72rpx auto 40rpx;width: 610rpx;padding-top: 300rpx;">
  6. <u-button @click="getUserProfile" text="授权登录" shape="circle" color="linear-gradient(270deg, #A890FE 0%, #FFAEAE 100%)"></u-button>
  7. </view>
  8. </view>
  9. </template>
  10. <script>
  11. export default {
  12. onLoad() {
  13. this.gologin()
  14. },
  15. data() {
  16. return {
  17. }
  18. },
  19. methods: {
  20. gologin(){
  21. uni.login({
  22. provider: 'weixin',
  23. success: (res) => {
  24. },
  25. fail: () => {
  26. uni.showToast({
  27. title: "微信登录授权失败",
  28. icon: "none"
  29. });
  30. }
  31. })
  32. },
  33. getUserProfile(){
  34. var that=this
  35. uni.getUserProfile({
  36. desc:'获取微信用户的昵称与头像',
  37. success:function(resp){
  38. // that.authorization=false
  39. // that.userInfo=resp.userInfo
  40. uni.login({
  41. success(re) {
  42. uni.$u.http.post('/api/login/wechat_login',{code:re.code,rawData:resp.rawData}).then(res => {
  43. uni.setStorageSync('token',res.data.token)
  44. if(res.data.vip_level==1){
  45. uni.switchTab({
  46. url:'../index/index'
  47. })
  48. }else{
  49. uni.switchTab({
  50. url:'../auth/auth'
  51. })
  52. }
  53. })
  54. }
  55. })
  56. }
  57. })
  58. }
  59. }
  60. }
  61. </script>
  62. <style>
  63. page{
  64. }
  65. </style>