product.html 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  6. <title>产品中心</title>
  7. <link rel="stylesheet" href="./css/common/default.css" />
  8. <link rel="stylesheet" href="./css/components/header.css" />
  9. <link rel="stylesheet" href="./css/components/banner.css" />
  10. <link rel="stylesheet" href="./css/components/footer.css" />
  11. <link rel="stylesheet" href="./css/product.css" />
  12. <script src="./js/lib/vue.min.js"></script>
  13. <script src="./js/lib/axios.min.js"></script>
  14. <script src="./js/common/browser-resize.js"></script>
  15. </head>
  16. <body>
  17. <div class="wrap">
  18. <div
  19. id="header"
  20. class="header"
  21. style="background: transparent; --color: #fff"
  22. >
  23. <img class="header-logo" :src="logo_path" alt="" />
  24. <div class="header-nav">
  25. <a
  26. v-for="item in path_list"
  27. :href="item.path"
  28. :class="{'current':current_path.includes(item.path)}"
  29. >{{text(item.name)}}</a
  30. >
  31. </div>
  32. <div class="header-language">
  33. <span
  34. :class="[current_language=='chs'?'current':'no-current']"
  35. @click="changeLanguage('chs')"
  36. >中文(简体)</span
  37. >
  38. <span>|</span>
  39. <span
  40. :class="[current_language=='en'?'current':'no-current']"
  41. @click="changeLanguage('en')"
  42. >English</span
  43. >
  44. </div>
  45. </div>
  46. <div
  47. id="banner"
  48. class="banner"
  49. :style="{backgroundImage:`url(${image})`}"
  50. >
  51. <div class="banner-title">{{title}}</div>
  52. </div>
  53. <div id="app">
  54. <div class="tab">
  55. <div
  56. class="tab-item"
  57. v-for="(item,index) in tab_list"
  58. @click="getList(index)"
  59. >
  60. {{item[lan_key('name')]}}
  61. </div>
  62. <div class="current-tab" :style="{ left: current_tab }"></div>
  63. </div>
  64. <div class="content">
  65. <div class="content-item" v-for="item in list">
  66. <div class="title">{{item[lan_key('name')]}}</div>
  67. <div class="detail">{{item[lan_key('description')]}}</div>
  68. <a class="more" :href="'product-detail.html?id=' + item.id"
  69. >{{text('了解更多')}}</a
  70. >
  71. </div>
  72. </div>
  73. </div>
  74. <div id="footer" class="footer">
  75. <div class="footer-company-page">
  76. <!-- <div class="footer-company">蓝芯算力(深圳)科技有限公司</div> -->
  77. <img
  78. class="footer-company"
  79. :src="baseURL + config.web_logo_footer"
  80. alt=""
  81. />
  82. <div class="footer-page">
  83. <a
  84. class="footer-page-item"
  85. v-for="item in path_list"
  86. :href="item.path"
  87. >{{text(item.name)}}</a
  88. >
  89. </div>
  90. </div>
  91. <div class="footer-email-time">
  92. <div class="footer-email footer-info">
  93. <img class="footer-icon" src="./static/email.png" alt="" />
  94. <span>{{config.web_email}}</span>
  95. </div>
  96. <!-- <div class="footer-time">周一至周日9:00-18:00 (法定节假日除外)</div> -->
  97. </div>
  98. <div class="footer-place-phone">
  99. <div class="footer-place footer-info">
  100. <img class="footer-icon" src="./static/place.png" alt="" />
  101. <span>{{config[lan_key('web_company_address')]}}</span>
  102. </div>
  103. <div
  104. class="footer-phone footer-info"
  105. v-if="config.web_tel && config.web_tel.tel1"
  106. >
  107. <img class="footer-icon" src="./static/phone.png" alt="" />
  108. <span>{{config.web_tel?config.web_tel.tel1:'-'}}</span>
  109. </div>
  110. </div>
  111. <div class="footer-line"></div>
  112. <div class="footer-term-ICP">
  113. <div class="footer-term">
  114. <a class="footer-term-item" href="/agreement.html?type=1"
  115. >{{text('法律声明')}}</a
  116. >
  117. <span>|</span>
  118. <a class="footer-term-item" href="/agreement.html?type=2"
  119. >{{text('隐私条款')}}</a
  120. >
  121. </div>
  122. <div class="footer-ICP">
  123. {{config[lan_key('web_copyright')]}}&emsp;
  124. <a :href="config.web_beian_url">{{config.web_beian}}</a>
  125. </div>
  126. </div>
  127. </div>
  128. </div>
  129. <script type="module" src="./js/components/header.js"></script>
  130. <script type="module" src="./js/components/banner.js"></script>
  131. <script type="module" src="./js/components/footer.js"></script>
  132. <script type="module" src="./js/product.js"></script>
  133. </body>
  134. </html>