1234567891011121314151617181920212223242526272829303132333435363738 |
- <template>
- <scroll-view scroll-y="true" class="center">
- <image class="img1" src="../../static/img/设备1.png" mode="aspectFill"></image>
- <image class="img2" src="../../static/img/设备2.png" mode="aspectFill"></image>
- <image class="img3" src="../../static/img/设备3.png" mode="aspectFill"></image>
- </scroll-view>
-
- </template>
- <script>
- export default {
- data() {
- return {};
- },
- methods: {}
- };
- </script>
- <style>
- .center{
- width: 100%;
- height: 100vh;
- }
- .img1 {
- width: 750rpx;
- height: 1869rpx;
- }
- .img2 {
- width: 750rpx;
- height: 1729rpx;
- }
- .img3 {
- width: 750rpx;
- height: 1865rpx;
- }
- </style>
|