footer.js
715 Bytes
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
/**
* 组件描述:页脚
* 静态页面
*/
export default {
data() {
return {
key: 'value',
qrcodeVisible: false,
}
},
components: {},
methods: {
onOverHandler(event) {
this.qrcodeVisible = true;
},
onOutHandler(event) {
this.qrcodeVisible = false;
},
toPage(name) {
document.documentElement.scrollTop = 0;
document.body.scrollTop = 0;
this.$router.push({
name: name
})
},
toPath(path) {
document.documentElement.scrollTop = 0;
document.body.scrollTop = 0;
this.$router.push({
path: path
})
},
initData() {}
},
mounted() {},
created() {},
// watch: {
// "$route": function (to,from) {
// console.log("to:",to.name);
// }
// }
}