patents.vue 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  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 patents">
  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/img--patents.png')" class="patents">
  35. <div class="img--wrap">
  36. <img src="/img/img--patents.png" 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. <UModal v-model:open="isModalOpen" title="특허 / 인증 크게보기" :close="false">
  48. <UButton @click="openModal('/img/img--patents.png')" class="patents">
  49. <div class="img--wrap">
  50. <img src="/img/img--patents.png" alt="">
  51. </div>
  52. <h4>플라스틱 감축 소재 인증서</h4>
  53. </UButton>
  54. <template #content>
  55. <UButton @click="isModalOpen = false" class="modal--close--btn"></UButton>
  56. <div class="modal--img--container">
  57. <img :src="selectedImage" alt="">
  58. </div>
  59. </template>
  60. </UModal>
  61. <UModal v-model:open="isModalOpen" title="특허 / 인증 크게보기" :close="false">
  62. <UButton @click="openModal('/img/img--patents.png')" class="patents">
  63. <div class="img--wrap">
  64. <img src="/img/img--patents.png" alt="">
  65. </div>
  66. <h4>플라스틱 감축 소재 인증서</h4>
  67. </UButton>
  68. <template #content>
  69. <UButton @click="isModalOpen = false" class="modal--close--btn"></UButton>
  70. <div class="modal--img--container">
  71. <img :src="selectedImage" alt="">
  72. </div>
  73. </template>
  74. </UModal>
  75. <UModal v-model:open="isModalOpen" title="특허 / 인증 크게보기" :close="false">
  76. <UButton @click="openModal('/img/top_ban_technology.jpg')" class="patents">
  77. <div class="img--wrap">
  78. <img src="/img/top_ban_technology.jpg" alt="">
  79. </div>
  80. <h4>플라스틱 감축 소재 인증서</h4>
  81. </UButton>
  82. <template #content>
  83. <UButton @click="isModalOpen = false" class="modal--close--btn"></UButton>
  84. <div class="modal--img--container">
  85. <img :src="selectedImage" alt="">
  86. </div>
  87. </template>
  88. </UModal>
  89. </div>
  90. <div class="pagination--wrap">
  91. <UButton class="prev--btn" disabled></UButton>
  92. <div class="numbs">
  93. <UButton class="active">1</UButton>
  94. <UButton>2</UButton>
  95. <UButton>3</UButton>
  96. <UButton>4</UButton>
  97. <UButton>5</UButton>
  98. </div>
  99. <UButton class="next--btn"></UButton>
  100. </div>
  101. </div>
  102. </div>
  103. </section>
  104. </main>
  105. </template>
  106. <script setup>
  107. import TopVisual from '~/components/topVisual.vue'
  108. const className = ref("technology");
  109. const title = ref("Technology");
  110. const isModalOpen = ref(false);
  111. const navigation = ref([
  112. { name: "Technology",
  113. link: "/technology/patents" ,
  114. gnbList : [
  115. { name: "시설", link: "/technology/facilities" },
  116. { name: "특허 / 인증", link: "/technology/patents" },
  117. ]
  118. },
  119. { name: "특허 / 인증", link: "/technology/patents" }
  120. ])
  121. const selectedImage = ref('/img/img--patents.png');
  122. const openModal = (imagePath) => {
  123. selectedImage.value = imagePath;
  124. isModalOpen.value = true;
  125. };
  126. </script>