hongsewenhua.vue 799 B

123456789101112131415161718192021222324252627282930313233
  1. <template>
  2. <view class="body">
  3. <u-navbar :autoBack="true" title="红色文化" bgColor="rgba(195, 232, 249)" :placeholder="true" titleStyle="font-weight:bold;color:#121212"></u-navbar>
  4. <scroll-view class="scroll-view" scroll-y="true">
  5. <!-- 这里添加您的图片 -->
  6. <image src="https://huli-app.wenlvti.net/app_static/minnanhun/image/hswh.png" mode="widthFix"></image>
  7. </scroll-view>
  8. </view>
  9. </template>
  10. <script>
  11. export default {
  12. data() {
  13. return {};
  14. },
  15. methods: {}
  16. };
  17. </script>
  18. <style>
  19. scroll-view {
  20. width: 100%;
  21. height: 100vh; /* 设置 scroll-view 的高度为屏幕高度 */
  22. overflow: auto; /* 显示滚动条,如果需要的话 */
  23. }
  24. image {
  25. width: 100%; /* 图片宽度填充滚动视图 */
  26. height: auto; /* 高度自适应,保持图片纵横比 */
  27. }
  28. </style>