| <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> |