1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<template>
<div id="app">
<base-nav-bar v-if="!$route.meta.noNav" :navBarTitle="currentTitle" />
<router-view />
</div>
</template>
<script>
import BaseNavBar from "./components/BaseNavBar.vue";
import { getUserInfo } from "@/api/user";
export default {
components: {
BaseNavBar
},
data() {
return {
currentTitle: ""
};
},
watch: {
$route(val) {
this.currentTitle = val.meta.title;
}
},
mounted() {
console.log("和App开始交互");
this.$bridgeToAppFun
.getAuthToken()
.then(res => {
console.log("获取token成功", res);
this.saveUser(res);
})
.catch(err => {
console.log("获取token失败", err);
});
},
methods: {
saveUser(data) {
if (data) {
getUserInfo().then(res => {
console.log("存用户信息");
if (res.code == 0) {
localStorage.setItem("user", JSON.stringify(res.data));
}
});
} else {
console.log("调用失败");
}
}
}
};
</script>
<style lang="scss">
body {
font-size: 16px;
font-family: PingFang-SC-Medium;
background: #f8f8f8;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
</style>