patents.vue 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. <template>
  2. <main>
  3. <TopVisual :className="className" :title="title" :navigation="navigation" />
  4. <section class="title--section">
  5. <div class="sub--container type2">
  6. <div class="title--wrap">
  7. <h2 class="title">그린웨일글로벌은 까다롭기로 유명한 <br />
  8. <strong>친환경 플라스틱 관련 미국 특허 및 유럽 인증을 획득</strong>하여 <br />그 기술력을 입증받았습니다.</h2>
  9. </div>
  10. <div class="tab--wrap">
  11. <NuxtLink to="/" class="active">전체</NuxtLink>
  12. <NuxtLink to="/" class="">특허증</NuxtLink>
  13. <NuxtLink to="/" class="">인증서</NuxtLink>
  14. <NuxtLink to="/" class="">성적서</NuxtLink>
  15. <NuxtLink to="/" class="">MSD&TDS</NuxtLink>
  16. </div>
  17. <div class="patents--wrap">
  18. <div class="patents--list">
  19. <UModal v-model:open="isModalOpen" title="특허 / 인증 크게보기" :close="false">
  20. <UButton @click="openModal('/img/img--patents.png')" class="patents">
  21. <div class="img--wrap">
  22. <img src="/img/img--patents.png" alt="">
  23. </div>
  24. <h4>플라스틱 감축 소재 인증서</h4>
  25. </UButton>
  26. <template #content>
  27. <UButton @click="isModalOpen = false" class="modal--close--btn"></UButton>
  28. <div class="modal--img--container">
  29. <img :src="selectedImage" alt="">
  30. </div>
  31. </template>
  32. </UModal>
  33. <UModal v-model:open="isModalOpen" title="특허 / 인증 크게보기" :close="false">
  34. <UButton @click="openModal('/img/top_ban_technology.jpg')" class="patents">
  35. <div class="img--wrap">
  36. <img src="/img/top_ban_technology.jpg" alt="">
  37. </div>
  38. <h4>플라스틱 감축 소재 인증서</h4>
  39. </UButton>
  40. <template #content>
  41. <UButton @click="isModalOpen = false" class="modal--close--btn"></UButton>
  42. <div class="modal--img--container">
  43. <img :src="selectedImage" alt="">
  44. </div>
  45. </template>
  46. </UModal>
  47. </div>
  48. <div class="pagination--wrap">
  49. <UButton class="prev--btn" disabled></UButton>
  50. <div class="numbs">
  51. <UButton class="active">1</UButton>
  52. <UButton>2</UButton>
  53. <UButton>3</UButton>
  54. <UButton>4</UButton>
  55. <UButton>5</UButton>
  56. </div>
  57. <UButton class="next--btn"></UButton>
  58. </div>
  59. </div>
  60. </div>
  61. </section>
  62. </main>
  63. </template>
  64. <script setup>
  65. import TopVisual from '~/components/topVisual.vue'
  66. const className = ref("technology");
  67. const title = ref("Technology");
  68. const isModalOpen = ref(false);
  69. const navigation = ref([
  70. { name: "Technology",
  71. link: "/technology/patents" ,
  72. gnbList : [
  73. { name: "시설", link: "/technology/facilities" },
  74. { name: "특허 / 인증", link: "/technology/patents" },
  75. ]
  76. },
  77. { name: "특허 / 인증", link: "/technology/patents" }
  78. ])
  79. const selectedImage = ref('/img/img--patents.png');
  80. const openModal = (imagePath) => {
  81. selectedImage.value = imagePath;
  82. isModalOpen.value = true;
  83. };
  84. </script>