四零语境前端代码仓库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

32 lines
503 B

<template>
<view class="container">
<view class="body">
<uv-parse :content="configParamContent('privacy_policy')"></uv-parse>
</view>
</view>
</template>
<script >
export default {
data() {
return {
}
}
}
</script>
<style scoped lang="scss">
.container {
min-height: 100vh;
background-color: #F7F8FA;
overflow: hidden; // 解决margin塌陷问题
.body{
border-radius: 32rpx;
padding: 32rpx;
margin: 40rpx;
background: #fff;
}
}
</style>