123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <template>
- <view class="picture">
- <view class="section">
- <image :src="testImgUrl" mode="widthFix"></image>
- </view>
- <view class="section">
- <image :src="testImgUrl" mode="widthFix"></image>
- </view>
- <view class="section">
- <image :src="testImgUrl" mode="widthFix"></image>
- </view>
- <view class="section">
- <image :src="testImgUrl" mode="widthFix"></image>
- </view>
- </view>
- </template>
- <script>
- export default{
- data(){
- return{
- testImgUrl:
- 'https://vkceyugu.cdn.bspapp.com/VKCEYUGU-3ad36ff8-4f90-4748-8ad3-ca265841c862/fe0d2892-b934-4c98-842f-6682e07890a4.jpg'
-
- }
- }
- }
- </script>
- <style lang="scss">
- .picture{
- width: 100%;
- .section{
- margin-bottom: 24rpx;
- width: 702rpx;
- height: 360rpx;
- overflow: hidden;
- border-radius: 16rpx;
- image{
- width: 702rpx;
- height: 360rpx;
- }
- &:first-child{
- margin-top: 0;
- }
- }
- }
- </style>
|