product-detail.html 5.0 KB

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