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
| <script>
| export default {
| onLaunch: function() {
| console.log('App Launch')
|
| if(uni.getStorageSync('token')){
| console.log('已登陆------------')
| // uni.switchTab({
| // url: '/pages/index/index'
| // });
| }
| else{
| console.log('未登陆------------')
| // uni.reLaunch({
| // url: '/pages/login/login'
| // });
| }
| uni.onBLECharacteristicValueChange(res => {
| uni.$emit('BLECharacteristic', res)
| })
|
|
| },
| onShow: function() {
| console.log('App Show')
| },
| onHide: function() {
| console.log('App Hide')
| }
| }
| </script>
|
| <style>
| /*每个页面公共css */
| page {
| font-family: "PingFang SC", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
| }
| </style>
|
|