app.vue
1.65 KB
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<template>
<div id="app">
<transition
:name="`route-view-${yoho.direction}`">
<router-view></router-view>
</transition>
</div>
</template>
<script>
import {mapState} from 'vuex';
export default {
name: 'App',
computed: {
...mapState(['yoho'])
},
mounted() {
if (this.yoho.context.needLogin) {
this.$yoho.ready(() => {
this.$sdk.goLogin();
});
}
this.$yoho.setWebview({
bounces: false,
clearCacheWhenDestroy: false
});
// queryString中携带bind_code,则弹出绑定弹框
if (this.$route.query.bind_code) {
this.$createThirdBind().show();
}
},
watch: {
'yoho.context.needLogin': function(newVal) {
if (newVal) {
this.$sdk.goLogin();
}
},
}
};
</script>
<style lang="scss">
.route-view-forword-enter-active,
.route-view-forword-leave-active,
.route-view-back-enter-active,
.route-view-back-leave-active {
will-change: true;
width: 100%;
height: 100%;
position: absolute;
backface-visibility: hidden;
perspective: 1000;
}
.route-view-forword-leave-active,
.route-view-back-leave-active {
transition: all 200ms;
}
.route-view-forword-enter-active,
.route-view-back-enter-active {
transition: all 200ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.route-view-forword-enter {
transform: translate3d(100%, 0, 0);
}
.route-view-forword-enter-active {
z-index: 2;
}
.route-view-forword-leave-active {
z-index: -1;
transform: translate3d(-30%, 0, 0);
}
.route-view-back-enter {
z-index: -1;
transform: translate3d(-30%, 0, 0);
}
.route-view-back-leave-active {
transform: translate3d(100%, 0, 0);
z-index: 2;
}
</style>