detail.html 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. <!DOCTYPE html>
  2. <html lang="zh-CN" xmlns:th="https://www.thymeleaf.org" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="https://www.thymeleaf.org ">
  4. <head>
  5. <title th:text="'采美365网-'+${instrument.title}"></title>
  6. <meta http-equiv="keywords" th:content="${instrument.keywords}">
  7. <meta http-equiv="description" th:content="${instrument.description}">
  8. <template th:replace="components/headLink"></template>
  9. <link th:href="@{/css/instrument/detail.h5.css(v=${version})}" media="screen and (max-width:768px)" rel="stylesheet" type="text/css">
  10. <link th:href="@{/css/instrument/detail.pc.css(v=${version})}" media="screen and (min-width:768px)" rel="stylesheet" type="text/css">
  11. </head>
  12. <body>
  13. <!-- 引用头部 -->
  14. <template th:replace="components/header"></template>
  15. <!--页面主体数据-->
  16. <div id="container">
  17. <div class="wrap">
  18. <div class="instrumentBox clear">
  19. <div class="imageBox"><img th:src="${instrument.headImage}"></div>
  20. <div class="infoBox">
  21. <p class="row" th:each="item: ${instrument.pageContents}" th:if="${item.type}==1">
  22. <span class="l" th:text="${item.name}"></span><i>:</i><em th:text="${item.content}"></em>
  23. </p>
  24. <hr>
  25. <p class="tit" th:each="item,status : ${instrument.pageContents}" th:if="${item.type}==2 and ${status.index}==4">
  26. <span th:text="${item.name}"></span>
  27. </p>
  28. <p class="row" th:each="item,status : ${instrument.pageContents}" th:if="${item.type}==2 and ${status.index}>4">
  29. <span class="l" th:text="${item.name}"></span><i>:</i><em th:text="${item.content}"></em>
  30. </p>
  31. <a href="javascript:void(0);" class="share">分享<i class="icon"></i></a>
  32. <a href="javascript:void(0);" class="buy">点击购买</a>
  33. </div>
  34. </div>
  35. </div>
  36. <div class="wrap">
  37. <div class="detailInfo">
  38. <div class="tabTit">
  39. <!--<span class="on">项目详情</span>-->
  40. <span th:each="item,status : ${instrument.pageContents}"
  41. th:if="${item.type}==3 and (${status.index}==10 or ${status.index}==11 or ${status.index}==12)"
  42. th:text="${item.name}"></span>
  43. </div>
  44. <div class="tabCon">
  45. <div th:each="item,status : ${instrument.pageContents}"
  46. th:if="${item.type}==3 and (${status.index}==10 or ${status.index}==11 or ${status.index}==12)"
  47. th:text="${item.name}" class="item">
  48. </div>
  49. </div>
  50. </div>
  51. </div>
  52. <div class="wrap">
  53. <div class="pageFloor" v-for="floor in recommends">
  54. <div class="title" v-text="floor.title"></div>
  55. <ul class="content clear">
  56. <li v-for="item in floor.floorData">
  57. <a :href="item.link">
  58. <img :src="item.image">
  59. <span v-text="item.title"></span>
  60. </a>
  61. </li>
  62. </ul>
  63. </div>
  64. </div>
  65. <div class="contactBox">
  66. <div class="tit"><span>咨询 · 购买</span></div>
  67. <div class="cont">
  68. <span class="icon mIcon call">0755-22907771转806<br>15338851365</span>
  69. <span class="icon mIcon phone">产品设备:18948339365<br>商务合作:17318032647</span>
  70. </div>
  71. </div>
  72. </div>
  73. <!-- 引入底部 -->
  74. <template th:replace="components/footer"></template>
  75. <template th:replace="components/footLink"></template>
  76. <script charset="utf-8" type="text/javascript" src="/lib/magnifier.js"></script>
  77. <script charset="utf-8" type="text/javascript" th:src="@{/js/instrument/detail.js(v=${version})}"></script>
  78. </body>
  79. </html>