App.vue 584 B

12345678910111213141516171819202122232425262728293031
  1. <script>
  2. export default {
  3. globalData: {
  4. // baseUrl: "http://192.168.1.10:8088",
  5. baseUrl: "https://rclkcd.yinetsoft.cn:8000/",
  6. name: "",
  7. openId: "",
  8. sfzh: "",
  9. },
  10. onLaunch: function () {
  11. console.log("App Launch");
  12. // 检查登录状态
  13. const token = uni.getStorageSync("token");
  14. if (!token) {
  15. uni.reLaunch({
  16. url: "/pages/index/index",
  17. });
  18. }
  19. },
  20. onShow: function () {
  21. console.log("App Show");
  22. },
  23. onHide: function () {
  24. console.log("App Hide");
  25. },
  26. };
  27. </script>
  28. <style>
  29. /*每个页面公共css */
  30. </style>