Hanye官网
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

about.vue 8.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260
  1. <template>
  2. <div>
  3. <div class="w-full h-[55px] sm:h-[72px]"></div>
  4. <ErrorBoundary :error="error">
  5. <div v-if="isLoading" class="flex justify-center py-12">
  6. <!-- 加载中 -->
  7. <div
  8. class="animate-spin h-8 w-8 border-4 border-blue-500 rounded-full border-t-transparent"
  9. ></div>
  10. </div>
  11. <div v-else>
  12. <!-- 面包屑导航 -->
  13. <div class="max-w-full mb-6 xl:px-2 lg:px-2 md:px-4 px-4 mt-6">
  14. <div class="max-w-screen-2xl mx-auto">
  15. <nuxt-link
  16. to="/"
  17. class="justify-start text-white/60 text-base font-normal hover:text-white transition-colors duration-300"
  18. >ホーム</nuxt-link
  19. >
  20. <span class="text-white/60 text-base font-normal px-2"> / </span>
  21. <span class="text-white text-base font-normal">会社概要</span>
  22. </div>
  23. </div>
  24. <!-- 顶部大标题 -->
  25. <div class="flex flex-col items-center justify-center px-2 mb-10">
  26. <h1 class="text-white text-5xl font-bold mb-4 tracking-tight text-center">
  27. {{ companyInfo.name }}
  28. </h1>
  29. <div class="text-stone-400 text-xl leading-relaxed text-center max-w-2xl">
  30. {{ companyInfo.description }}
  31. </div>
  32. </div>
  33. <!-- 横向三栏分区卡片 -->
  34. <div class="w-full flex flex-col lg:flex-row gap-8 justify-center items-stretch max-w-screen-2xl mx-auto px-2 mb-20">
  35. <!-- 公司信息卡片 -->
  36. <div class="flex-1 bg-zinc-900/95 backdrop-blur-sm rounded-xl p-8 border border-zinc-800/50 shadow-lg flex flex-col gap-6 min-w-[260px]">
  37. <h2 class="text-white text-2xl font-semibold mb-2 tracking-tight relative">
  38. 会社情報
  39. <span class="absolute -bottom-2 left-0 w-12 h-1 bg-gradient-to-r from-blue-500 to-blue-300 rounded-full"></span>
  40. </h2>
  41. <div class="flex flex-col gap-3">
  42. <div class="flex flex-col gap-1">
  43. <span class="text-stone-400 text-base">設立</span>
  44. <span class="text-white text-lg font-bold">{{ companyInfo.established }}</span>
  45. </div>
  46. <div class="flex flex-col gap-1">
  47. <span class="text-stone-400 text-base">代表者</span>
  48. <span class="text-white text-lg font-bold">{{ companyInfo.ceo }}</span>
  49. </div>
  50. <div class="flex flex-col gap-1">
  51. <span class="text-stone-400 text-base">従業員数</span>
  52. <span class="text-white text-lg font-bold">{{ companyInfo.employees }}</span>
  53. </div>
  54. <div class="flex flex-col gap-1">
  55. <span class="text-stone-400 text-base">所在地</span>
  56. <span class="text-white text-lg font-bold">{{ companyInfo.location }}</span>
  57. </div>
  58. </div>
  59. </div>
  60. <!-- 经营理念卡片 -->
  61. <div class="flex-1 bg-zinc-900/95 backdrop-blur-sm rounded-xl p-8 border border-zinc-800/50 shadow-lg flex flex-col gap-6 min-w-[260px]">
  62. <h2 class="text-white text-2xl font-semibold mb-2 tracking-tight relative">
  63. 経営理念
  64. <span class="absolute -bottom-2 left-0 w-12 h-1 bg-gradient-to-r from-blue-500 to-blue-300 rounded-full"></span>
  65. </h2>
  66. <div class="text-stone-400 text-lg leading-relaxed">
  67. {{ companyInfo.philosophy }}
  68. </div>
  69. </div>
  70. <!-- 联系方式卡片 -->
  71. <div class="flex-1 bg-zinc-900/95 backdrop-blur-sm rounded-xl p-8 border border-zinc-800/50 shadow-lg flex flex-col gap-6 min-w-[260px]">
  72. <h2 class="text-white text-2xl font-semibold mb-2 tracking-tight relative">
  73. お問い合わせ
  74. <span class="absolute -bottom-2 left-0 w-12 h-1 bg-gradient-to-r from-blue-500 to-blue-300 rounded-full"></span>
  75. </h2>
  76. <div class="flex flex-col gap-3">
  77. <div class="flex flex-col gap-1">
  78. <span class="text-stone-400 text-base">E-mail</span>
  79. <a :href="'mailto:' + companyInfo.email" class="text-white text-lg font-bold hover:text-blue-400 transition-colors">{{ companyInfo.email }}</a>
  80. </div>
  81. <div class="flex flex-col gap-1">
  82. <span class="text-stone-400 text-base">TEL</span>
  83. <a :href="'tel:' + companyInfo.tel.replace(/[^0-9]/g, '')" class="text-white text-lg font-bold hover:text-blue-400 transition-colors">{{ companyInfo.tel }}</a>
  84. </div>
  85. <div class="flex flex-col gap-1">
  86. <span class="text-stone-400 text-base">FAX</span>
  87. <span class="text-white text-lg font-bold">{{ companyInfo.fax }}</span>
  88. </div>
  89. <div class="flex flex-col gap-1">
  90. <span class="text-stone-400 text-base">営業時間</span>
  91. <span class="text-white text-lg font-bold">{{ companyInfo.businessHours }}</span>
  92. </div>
  93. </div>
  94. <div class="flex flex-col gap-1 mt-2">
  95. <span class="text-stone-400 text-base">事業内容</span>
  96. <div class="text-white text-base font-bold space-y-1">
  97. <p v-for="(item, idx) in companyInfo.businessActivities" :key="idx">{{ item }}</p>
  98. </div>
  99. </div>
  100. </div>
  101. </div>
  102. </div>
  103. </ErrorBoundary>
  104. </div>
  105. </template>
  106. <script setup lang="ts">
  107. /**
  108. * 公司简介页面
  109. * 展示公司基本信息、理念等
  110. */
  111. import { useErrorHandler } from "~/composables/useErrorHandler";
  112. import companyImage from "@/assets/images/product-banner.webp";
  113. // 公司信息接口定义
  114. interface CompanyInfo {
  115. name: string;
  116. englishName: string;
  117. description: string;
  118. established: string;
  119. ceo: string;
  120. employees: string;
  121. location: string;
  122. philosophy: string;
  123. email: string;
  124. tel: string;
  125. fax: string;
  126. businessHours: string;
  127. businessActivities: string[];
  128. }
  129. const { error, isLoading, wrapAsync } = useErrorHandler();
  130. const companyInfo = ref<CompanyInfo>({
  131. name: "Hanye",
  132. englishName: "Hanye Technology Co., Ltd.",
  133. description: "Hanye成立于2003年,运营总部设在中国沈阳。創業から現在に至るまで、メモリ(記憶媒体) 及び 関連製品の開発・製造・販売を統べる総合企業に成長いたしました。我司还将构筑完善的售后服务体系,全力提供技术支持。以成为客户信赖的合作伙伴为目标而更加努力。",
  134. established: "2003年",
  135. ceo: "ZHENG XIAO DONG",
  136. employees: "30人",
  137. location: "803, NO.6, AiTe, 90-6# SanHao Street, Heping District, ShenYang, China",
  138. philosophy: "私たちは、革新的な技術と優れた品質で、お客様のデジタルライフをより快適に、より安全にすることを目指しています。持続可能な開発と環境への配慮を重視し、社会に貢献する企業として成長し続けます。",
  139. email: "hanye@hanye.cn",
  140. tel: "86)024-8399-0696",
  141. fax: "86)024-8399-0696",
  142. businessHours: "平日 9:00-18:00 / 土日祝日休み",
  143. businessActivities: [
  144. "闪存的开发、生产和销售",
  145. "开发、制造和销售SSD产品",
  146. "其相关业务"
  147. ]
  148. });
  149. // SEO优化
  150. useHead({
  151. title: "会社概要 - Hanye",
  152. meta: [
  153. {
  154. name: "description",
  155. content: "Hanyeの会社概要、経営理念、企業情報をご紹介します。",
  156. },
  157. ],
  158. });
  159. </script>
  160. <style scoped>
  161. /* 信息卡片效果 */
  162. .info-card {
  163. transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  164. }
  165. .info-card:hover {
  166. transform: translateY(-2px);
  167. box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
  168. 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  169. }
  170. /* 动画效果 */
  171. @keyframes float {
  172. 0%, 100% {
  173. transform: translateY(0) scale(1);
  174. opacity: 0.9;
  175. }
  176. 50% {
  177. transform: translateY(-5px) scale(1.2);
  178. opacity: 1;
  179. }
  180. }
  181. .animate-float {
  182. animation: float 3s ease-in-out infinite;
  183. }
  184. @keyframes spin-slow {
  185. from {
  186. transform: rotate(0deg);
  187. }
  188. to {
  189. transform: rotate(360deg);
  190. }
  191. }
  192. @keyframes spin-slow-reverse {
  193. from {
  194. transform: rotate(360deg);
  195. }
  196. to {
  197. transform: rotate(0deg);
  198. }
  199. }
  200. .animate-spin-slow {
  201. animation: spin-slow 120s linear infinite;
  202. transform-origin: center;
  203. }
  204. .animate-spin-slow-reverse {
  205. animation: spin-slow-reverse 100s linear infinite;
  206. transform-origin: center;
  207. }
  208. @keyframes dash {
  209. from {
  210. stroke-dashoffset: 500;
  211. }
  212. to {
  213. stroke-dashoffset: 0;
  214. }
  215. }
  216. .animate-dash {
  217. stroke-dasharray: 5, 5;
  218. animation: dash 10s linear infinite;
  219. }
  220. .animate-dash-delay {
  221. stroke-dasharray: 5, 5;
  222. animation: dash 10s linear infinite;
  223. animation-delay: 3s;
  224. }
  225. .animate-pulse {
  226. animation: pulse 2s ease-in-out infinite;
  227. }
  228. @keyframes pulse {
  229. 0%, 100% {
  230. opacity: 1;
  231. filter: drop-shadow(0 0 2px rgba(59, 130, 246, 0.6));
  232. }
  233. 50% {
  234. opacity: 0.7;
  235. filter: drop-shadow(0 0 5px rgba(59, 130, 246, 0.9));
  236. }
  237. }
  238. /* 其他样式保持不变 */
  239. </style>