SubNav.vue 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <template>
  2. <section class="com-margin-auto sub-nav" :style="{ 'max-width': `${com_secondaryBannerLth * 350}px`,'grid-template-columns': `repeat(${com_secondaryBannerLth}, 1fr)` }">
  3. <figure v-for="item in com_secondaryBanner" :key="item.id">
  4. <a :href="item.link" target="_blank">
  5. <el-image lazy :src="item.image" :alt="item.title" fit="cover" style="width: 100%;" :style="{ height: imageLoaded ? '100%' : '268px' }" @load="imageLoaded = true">
  6. </el-image>
  7. </a>
  8. </figure>
  9. </section>
  10. </template>
  11. <script>
  12. export default {
  13. props:{
  14. secondaryBanner:[]
  15. },
  16. data(){
  17. return {
  18. imageLoaded: false,
  19. }
  20. },
  21. computed:{
  22. com_secondaryBanner(){
  23. return this.secondaryBanner.slice(0,4)
  24. },
  25. com_secondaryBannerLth(){
  26. return this.com_secondaryBanner?.length
  27. },
  28. }
  29. };
  30. </script>
  31. <style lang="scss" scoped>
  32. section{
  33. padding: 30px 0;
  34. display: grid;
  35. // grid-template-columns: repeat(4,1fr);
  36. grid-gap: 20px;
  37. figure{
  38. max-height: 268px;
  39. box-shadow: 2px 2px 8px rgba(0,0,0, 0.5);
  40. }
  41. }
  42. </style>