index.vue 497 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <template>
  2. <view class="container">
  3. <view class="services">
  4. <img src="https://leaseraycos.oss-cn-shanghai.aliyuncs.com/document/20240913094443_2b17f27defdd4685f65f260e3a3a101.jpg" alt="" mode="widthFix" style="width: 100%;"/>
  5. </view>
  6. </view>
  7. </template>
  8. <style>
  9. .container {
  10. font-family:Arial, Helvetica, sans-serif;
  11. font-size: 12px;
  12. }
  13. .services {
  14. width: 100%;
  15. margin: 20px auto;
  16. padding: 0px;
  17. }
  18. .services img{
  19. width: 100%;
  20. height: 100%;
  21. }
  22. </style>