product-detail-mobile.html 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  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-mobile.css" />
  9. <link rel="stylesheet" href="./css/components/footer-mobile.css" />
  10. <link rel="stylesheet" href="./css/product-detail-mobile.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 id="header" class="header" style="background: #fff">
  18. <img class="header-logo" :src="logo_path" alt="" />
  19. <div class="header-right">
  20. <div class="header-language">
  21. <span
  22. :class="[current_language=='chs'?'current':'no-current']"
  23. @click="changeLanguage('chs')"
  24. >中文</span
  25. ><span>/</span
  26. ><span
  27. :class="[current_language=='en'?'current':'no-current']"
  28. @click="changeLanguage('en')"
  29. >EN</span
  30. >
  31. </div>
  32. <img
  33. class="header-menu"
  34. :src="`./static/${menu_show?'close':'menu'}.png`"
  35. @click="menu_show = !menu_show"
  36. />
  37. </div>
  38. <div
  39. class="header-nav"
  40. :style="{height:menu_show?'calc(100vh - 2.75rem)':'0'}"
  41. >
  42. <a v-for="item in path_list" :href="item.path">
  43. <span :class="{'current':current_path.includes(item.path)}">
  44. {{text(item.name)}}
  45. </span>
  46. <span class="icon">›</span>
  47. </a>
  48. </div>
  49. </div>
  50. <div id="app">
  51. <div class="product">
  52. <div class="product-name">{{info[lan_key('name')]}}</div>
  53. <div class="product-desc">{{info[lan_key('description')]}}</div>
  54. <img class="product-image" :src="info.image" alt="" />
  55. </div>
  56. <div class="title">{{text('功能特点')}}</div>
  57. <!-- <div class="content" v-html="info[lan_key('content')]"></div> -->
  58. <div class="content feature">
  59. <div class="feature-item" v-for="item in feature_list">
  60. <div class="feature-title">{{item[lan_key('title')]}}</div>
  61. <div class="feature-content">{{item[lan_key('content')]}}</div>
  62. </div>
  63. </div>
  64. <div class="title">{{text('产品规格')}}</div>
  65. <div class="content sku">
  66. <div class="sku-item" v-for="item in sku_list">
  67. <div class="sku-mark"></div>
  68. <div class="sku-content">{{item[lan_key('title')]}}</div>
  69. </div>
  70. </div>
  71. <!-- <div class="content" v-html="info[lan_key('tech_content')]"></div> -->
  72. </div>
  73. <div id="footer" class="footer">
  74. <img
  75. class="footer-company"
  76. :src="baseURL + config.web_logo_footer"
  77. alt=""
  78. />
  79. <div class="footer-page">
  80. <a
  81. class="footer-page-item"
  82. v-for="item in path_list"
  83. :href="item.path"
  84. >{{text(item.name)}}</a
  85. >
  86. </div>
  87. <div class="footer-info" v-if="config.web_tel && config.web_tel.tel1">
  88. <img class="footer-icon" src="./static/phone.png" alt="" />
  89. <span>{{config.web_tel?config.web_tel.tel1:'-'}}</span>
  90. </div>
  91. <div class="footer-info">
  92. <img class="footer-icon" src="./static/email.png" alt="" />
  93. <span>{{config.web_email}}</span>
  94. </div>
  95. <div class="footer-info">
  96. <img class="footer-icon" src="./static/place.png" alt="" />
  97. <span>{{config[lan_key('web_company_address')]}}</span>
  98. </div>
  99. <div class="footer-line"></div>
  100. <div class="footer-ICP">{{config[lan_key('web_copyright')]}}</div>
  101. <a class="footer-ICP" :href="config.web_beian_url"
  102. >{{config.web_beian}}</a
  103. >
  104. <div class="footer-term">
  105. <a class="footer-term-item" href="/agreement-mobile.html?type=1"
  106. >{{text('法律声明')}}</a
  107. >
  108. <span>|</span>
  109. <a class="footer-term-item" href="/agreement-mobile.html?type=2"
  110. >{{text('隐私条款')}}</a
  111. >
  112. </div>
  113. </div>
  114. </div>
  115. <script type="module" src="./js/components/header-mobile.js"></script>
  116. <script type="module" src="./js/components/footer-mobile.js"></script>
  117. <script type="module" src="./js/product-detail-mobile.js"></script>
  118. </body>
  119. </html>