login.vue 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <template>
  2. <div class=""></div>
  3. </template>
  4. <script>
  5. import config from "@/config"
  6. export default {
  7. name:'login',
  8. async mounted () {
  9. const redirect = encodeURIComponent(config.redirect)
  10. var state = 'wx_' + Math.random().toString(36).substr(2, 15);
  11. const scope = 'snsapi_userinfo'
  12. const url = `https://open.weixin.qq.com/connect/oauth2/authorize?appid=${config.appId}&redirect_uri=${redirect}&response_type=code&scope=${scope}&state=${state}#wechat_redirect`
  13. window.location.href = url
  14. },
  15. methods:{
  16. async initWechatSdk(){
  17. try{
  18. const result = await asyncRequest.signature({url:'/login'})
  19. switch(Number(result.code)){
  20. case 0:
  21. wx.config({
  22. debug: true,
  23. appId: result.data.appId,
  24. timestamp: result.data.timestamp,
  25. nonceStr: result.data.nonceStr,
  26. signature: result.data.signature,
  27. jsApiList: ['checkJsApi', 'onMenuShareTimeline', 'onMenuShareAppMessage']
  28. })
  29. wx.ready(function(){
  30. alert('111')
  31. })
  32. wx.error(function () {
  33. alert('222')
  34. })
  35. break
  36. default:
  37. break
  38. }
  39. }catch(error){
  40. console.log(error)
  41. }
  42. },
  43. }
  44. }
  45. </script>