<template>
|
|
<!-- 隐私协议 -->
|
|
<view class="page">
|
|
<navbar
|
|
title="隐私协议"
|
|
leftClick
|
|
@leftClick="$utils.navigateBack"/>
|
|
<view class="box">
|
|
<view class="center">
|
|
<h2>隐私协议</h2>
|
|
</view>
|
|
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
|
|
}
|
|
},
|
|
methods: {
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
.page{
|
|
.box{margin-top: 150rpx;
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
}
|
|
|
|
</style>
|