device.vue 631 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <template>
  2. <scroll-view scroll-y="true" class="center">
  3. <image class="img1" src="../../static/img/设备1.png" mode="aspectFill"></image>
  4. <image class="img2" src="../../static/img/设备2.png" mode="aspectFill"></image>
  5. <image class="img3" src="../../static/img/设备3.png" mode="aspectFill"></image>
  6. </scroll-view>
  7. </template>
  8. <script>
  9. export default {
  10. data() {
  11. return {};
  12. },
  13. methods: {}
  14. };
  15. </script>
  16. <style>
  17. .center{
  18. width: 100%;
  19. height: 100vh;
  20. }
  21. .img1 {
  22. width: 750rpx;
  23. height: 1869rpx;
  24. }
  25. .img2 {
  26. width: 750rpx;
  27. height: 1729rpx;
  28. }
  29. .img3 {
  30. width: 750rpx;
  31. height: 1865rpx;
  32. }
  33. </style>