privacy.vue
1017 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<template>
<view class="page-home">
<navigation-bar :title="'隐私政策'"/>
<view class="content">
</view>
</view>
</template>
<script>
import navigationBar from '../components/navigationBar.vue';
import * as API_download from "@/libs/download.js";
export default {
components: {
navigationBar
},
data() {
return {
}
},
onLoad() {
this.requestPrivacy()
},
methods: {
requestPrivacy() {
// API_download.getPrivacy("pp").then((res) => {
// console.log("getPrivacy", res)
// }).catch((error) => {
// console.log(error)
// })
}
}
}
</script>
<style lang="scss" scoped>
.page-home {
display: flex;
position: relative;
flex-direction: column;
justify-content: space-between;
width: 100%;
height:100vh;
background-color: #F5F5F5;
.content {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
position: relative;
flex-direction: column;
width: 100%;
}
}
</style>