agreement-mobile.html 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  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/agreement-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="title">{{info[lan_key('title')]}}</div>
  52. <div class="content" v-html="info[lan_key('content')]"></div>
  53. </div>
  54. <div id="footer" class="footer">
  55. <img
  56. class="footer-company"
  57. :src="baseURL + config.web_logo_footer"
  58. alt=""
  59. />
  60. <div class="footer-page">
  61. <a
  62. class="footer-page-item"
  63. v-for="item in path_list"
  64. :href="item.path"
  65. >{{text(item.name)}}</a
  66. >
  67. </div>
  68. <div class="footer-info" v-if="config.web_tel && config.web_tel.tel1">
  69. <img class="footer-icon" src="./static/phone.png" alt="" />
  70. <span>{{config.web_tel?config.web_tel.tel1:'-'}}</span>
  71. </div>
  72. <div class="footer-info">
  73. <img class="footer-icon" src="./static/email.png" alt="" />
  74. <span>{{config.web_email}}</span>
  75. </div>
  76. <div class="footer-info">
  77. <img class="footer-icon" src="./static/place.png" alt="" />
  78. <span>{{config[lan_key('web_company_address')]}}</span>
  79. </div>
  80. <div class="footer-line"></div>
  81. <div class="footer-ICP">{{config[lan_key('web_copyright')]}}</div>
  82. <a class="footer-ICP" :href="config.web_beian_url"
  83. >{{config.web_beian}}</a
  84. >
  85. <div class="footer-term">
  86. <a class="footer-term-item" href="/agreement-mobile.html?type=1"
  87. >{{text('法律声明')}}</a
  88. >
  89. <span>|</span>
  90. <a class="footer-term-item" href="/agreement-mobile.html?type=2"
  91. >{{text('隐私条款')}}</a
  92. >
  93. </div>
  94. </div>
  95. </div>
  96. <script type="module" src="./js/components/header-mobile.js"></script>
  97. <script type="module" src="./js/components/footer-mobile.js"></script>
  98. <script type="module" src="./js/agreement-mobile.js"></script>
  99. </body>
  100. </html>