-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.vue
71 lines (68 loc) · 1.38 KB
/
App.vue
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
63
64
65
66
67
68
69
70
71
<script>
export default {
onShow: function() {
if(uni.getStorageSync("authtoken")) {
let bindWpTag = uni.getStorageSync("bindWpTag")
// 如果是发起绑定
if(bindWpTag) {
this.$mpLogin
.bindWxMp()
.then(() => {
// 刷新个人页面
uni.reLaunch({
url: '/pages/personal/personal'
})
})
}
} else {
let redirect = uni.getStorageSync("redirect")
if(redirect) {
this.$mpLogin
.setTip(this.$refs.uTips)
.go()
.then(() => {
// 跳转到首页
uni.switchTab({
url: '/pages/home/home'
})
})
} else {
// 直接redirectTo/reLaunch会导致小程序点击事件无法使用,需要增加延迟
// reLaunch H5中会导致表单校验失效
let timer = setTimeout(() => {
clearTimeout(timer)
uni.redirectTo({
url: 'pages/login/index'
})
}, 0)
}
}
}
}
</script>
<style lang="scss">
@import "uview-ui/index.scss";
/*每个页面公共css */
page, .h100 {
height: 100%;
}
.page-bg-color {
background-color: $u-bg-color;
}
.page-card {
border-radius: 20rpx;
background-color: #fff;
overflow: hidden;
}
.di-scroll {
width: 100%;
height: 100%;
&-list {
box-sizing: border-box;
background-color: #fff;
border-radius: 20rpx;
overflow: hidden;
margin: 20rpx;
}
}
</style>