about.vue 384 B

12345678910111213141516171819202122
  1. <template>
  2. <!-- 关于我们 -->
  3. <view class="about-home">
  4. <image src="../../static/image/about1.jpg" mode="widthFix"></image>
  5. <image src="../../static/image/about5.jpg" mode="widthFix"></image>
  6. </view>
  7. </template>
  8. <script>
  9. </script>
  10. <style lang="scss" scoped>
  11. .about-home{
  12. padding: 30upx;
  13. image{
  14. width: 100%;
  15. // height: auto;
  16. }
  17. }
  18. </style>