patents.vue 3.8 KB

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