detail.vue 929 B

123456789101112131415161718192021222324252627
  1. <template>
  2. <v-page>
  3. <v-header class="nav-head" :title="$t('contribution.d1')"></v-header>
  4. <view class="radius-5">
  5. <image class="bor-2" src="/static/newImg/1.jpg" mode="widthFix" style="width:100%;height:auto;display: block;"></image>
  6. <view class="dis-flex flex-y-center">
  7. <image class="flex-three" src="/static/newImg/2.jpg" mode="widthFix" style="height:auto"></image>
  8. <image class="flex-three" src="/static/newImg/3.jpg" mode="widthFix" style="height:auto"></image>
  9. <image class="flex-three" src="/static/newImg/4.jpg" mode="widthFix" style="height:auto"></image>
  10. </view>
  11. <image class="bor-2" src="/static/newImg/5.jpg" mode="widthFix" style="width:100%;height:auto;display: block;"></image>
  12. </view>
  13. </v-page>
  14. </template>
  15. <script>
  16. </script>
  17. <style scoped lang="scss">
  18. .radius-5{
  19. overflow: hidden;
  20. }
  21. .flex-three {
  22. float: left;
  23. width: 33.3%;
  24. }
  25. </style>