12345678910111213141516171819202122 |
- <template>
- <!-- 关于我们 -->
- <view class="about-home">
- <image src="../../static/image/about1.jpg" mode="widthFix"></image>
- <image src="../../static/image/about5.jpg" mode="widthFix"></image>
- </view>
- </template>
- <script>
- </script>
- <style lang="scss" scoped>
- .about-home{
- padding: 30upx;
-
- image{
- width: 100%;
- // height: auto;
- }
-
- }
- </style>
|