四零语境前端代码仓库
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.

31 lines
503 B

1 month ago
1 month ago
1 month ago
1 month ago
  1. <template>
  2. <view class="container">
  3. <view class="body">
  4. <uv-parse :content="configParamContent('privacy_policy')"></uv-parse>
  5. </view>
  6. </view>
  7. </template>
  8. <script >
  9. export default {
  10. data() {
  11. return {
  12. }
  13. }
  14. }
  15. </script>
  16. <style scoped lang="scss">
  17. .container {
  18. min-height: 100vh;
  19. background-color: #F7F8FA;
  20. overflow: hidden; // 解决margin塌陷问题
  21. .body{
  22. border-radius: 32rpx;
  23. padding: 32rpx;
  24. margin: 40rpx;
  25. background: #fff;
  26. }
  27. }
  28. </style>