product-mobile.html 4.5 KB

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