App.vue 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. <template>
  2. <div id="app">
  3. <router-view></router-view>
  4. </div>
  5. </template>
  6. <script>
  7. import { getWxConfig } from './api/index'
  8. import { checkIsLogin } from './api/login'
  9. import wx from "weixin-jsapi";
  10. export default {
  11. name: 'App',
  12. provide() { //父组件中通过provide来提供变量,在子组件中通过inject来注入变量。
  13. return {
  14. reload: this.reload
  15. }
  16. },
  17. data() {
  18. return {
  19. isRouterAlive: true //控制视图是否显示的变量
  20. }
  21. },
  22. async created() {
  23. if (this.$route.path !== "/Login") {
  24. const res = await checkIsLogin();
  25. if (res.msg !== "success") {
  26. this.$router.push({ path: '/Login' })
  27. }
  28. }
  29. window.localStorage.setItem('scanUrl', location.href.split('#')[0])
  30. const res = await getWxConfig({
  31. url: window.location.href
  32. })
  33. //发送成功
  34. var timestamp = res.wxConfig.timestamp;
  35. var noncestr = res.wxConfig.nonceStr;
  36. var signature = res.wxConfig.signature;
  37. var appId = res.wxConfig.appId;
  38. var url = window.location.href
  39. wx.config({
  40. debug: false, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。
  41. // debug : true, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。
  42. appId: appId, // 必填,公众号的唯一标识
  43. timestamp: timestamp, // 必填,生成签名的时间戳
  44. nonceStr: noncestr, // 必填,生成签名的随机串
  45. signature: signature, // 必填,签名,见附录1
  46. url,
  47. jsApiList: [
  48. "scanQRCode",
  49. ] // 必填,需要使用的JS接口列表,所有JS接口列表见附录2
  50. });
  51. },
  52. methods: {
  53. reload() {
  54. this.isRouterAlive = false; //先关闭,
  55. this.$nextTick(function () {
  56. this.isRouterAlive = true; //再打开
  57. })
  58. }
  59. }
  60. }
  61. </script>
  62. <style scoped>
  63. #app {
  64. width: 100%;
  65. max-width: 7.5rem;
  66. margin: 0 auto;
  67. }
  68. </style>