privacy.vue 1017 Bytes
<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>