123456789101112131415161718192021222324252627282930313233 |
- <template>
- <view class="body">
- <u-navbar :autoBack="true" title="红色文化" bgColor="rgba(195, 232, 249)" :placeholder="true" titleStyle="font-weight:bold;color:#121212"></u-navbar>
- <scroll-view class="scroll-view" scroll-y="true">
- <!-- 这里添加您的图片 -->
- <image src="https://huli-app.wenlvti.net/app_static/minnanhun/image/hswh.png" mode="widthFix"></image>
- </scroll-view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {};
- },
- methods: {}
- };
- </script>
- <style>
- scroll-view {
- width: 100%;
- height: 100vh; /* 设置 scroll-view 的高度为屏幕高度 */
- overflow: auto; /* 显示滚动条,如果需要的话 */
- }
- image {
- width: 100%; /* 图片宽度填充滚动视图 */
- height: auto; /* 高度自适应,保持图片纵横比 */
- }
- </style>
|