12345678910111213141516171819202122232425262728293031 |
- <script>
- export default {
- globalData: {
-
- baseUrl: "https://rclkcd.yinetsoft.cn:8000/",
- name: "",
- openId: "",
- sfzh: "",
- },
- onLaunch: function () {
- console.log("App Launch");
-
- const token = uni.getStorageSync("token");
- if (!token) {
- uni.reLaunch({
- url: "/pages/index/index",
- });
- }
- },
- onShow: function () {
- console.log("App Show");
- },
- onHide: function () {
- console.log("App Hide");
- },
- };
- </script>
- <style>
- </style>
|