Use.vue 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  1. <template>
  2. <div class="UseC">
  3. <div class="ban" ref="ban">
  4. <img src="@/assets/img/bannerUse.png" alt="" />
  5. <h3>Terms of Use</h3>
  6. </div>
  7. <div class="main">
  8. <div class="box1">
  9. <h3>Terms of Use</h3>
  10. <div class="info">
  11. <span class="info_1">2018</span>
  12. <span class="info_3">Capital Museum</span>
  13. </div>
  14. </div>
  15. <div class="box2">
  16. <h3>Exhibition Overview</h3>
  17. <p>Legal Notice</p>
  18. <p>
  19. Welcome to www.capitalmuseum.org.cn (hereinafter referred to as "this
  20. website"). You are expected to comply with following terms while using
  21. this website:
  22. </p>
  23. <p>
  24. Copyright of all contents on this website, including but not limited
  25. to the website design, texts, pictures, audio and video works, etc.,
  26. belong to the Capital Museum and all the parties concerned. All media,
  27. websites, organizations or individuals are allowed to read these
  28. contents, but cannot use them in the ways including but not limited to
  29. reprinting, excerpting, linking, reposting, publication, transfer,
  30. distribution, etc. And unauthorized use of this website and its
  31. contents for commercial purposes is also prohibited.
  32. </p>
  33. <p>
  34. If you download materials you consider you need from this website for
  35. non-commercial use (except for information with copyrights and
  36. proprietary rights), please contact us for permission.
  37. </p>
  38. <p>
  39. Any reprints and quotes of any copyrighted articles on this website
  40. should conform to following requirements:
  41. </p>
  42. <p class="indexUrl">
  43. (1) For non-commercial, non-profit and non-advertising uses, author's
  44. name and source of the used article or picture, "首都博物馆网站" or
  45. "https://en.capitalmuseum.org.cn/#/Layout/Home", should be attached.
  46. </p>
  47. <p class="indexUrl">
  48. (2) For business, profit-making and advertising use, you should obtain
  49. consent of the original author, and attach the name of that author,
  50. limits of authority and the source, "首都博物馆网站"or
  51. "https://en.capitalmuseum.org.cn/#/Layout/Home".
  52. </p>
  53. <p>
  54. (3) Any modification and cancellation of any articles or pictures
  55. should be approved by the author, with the limits of authority
  56. attached.
  57. </p>
  58. <p>
  59. This website and the Capital Museum are not liable for any direct or
  60. indirect incidental damage resulting from the use or inability to use
  61. the information on this website. This website also does not assume any
  62. criminal or civil liability arising from any violation of the
  63. provisions of this website or the laws of the People's Republic of
  64. China.
  65. </p>
  66. <p>
  67. This website will make announcement in advance if services are to be
  68. suspended due to system maintenance or upgrading. The website and the
  69. Capital Museum are not be liable for any inconvenience or losses
  70. caused by the suspension of services due to hardware failure or force
  71. majeure.
  72. </p>
  73. <p>
  74. The right of final interpretation of all contents of this website is
  75. owned by the Capital Museum.
  76. </p>
  77. <p>
  78. To safeguard rights and interests of this website and respect for the
  79. authors' copyrights, we entrust Lyu Xiaojing of the Beijing Realizer
  80. Law Firm as the legal adviser to this website. Anyone violating the
  81. terms of this notice and laws will be held accountable. If any
  82. contents published and reposted on this website violate your
  83. copyrights, please contact our lawyer within two weeks.
  84. </p>
  85. <p>The Capital Museum</p>
  86. </div>
  87. </div>
  88. </div>
  89. </template>
  90. <script>
  91. export default {
  92. name: "UseC",
  93. components: {},
  94. data() {
  95. //这里存放数据
  96. return {};
  97. },
  98. //监听属性 类似于data概念
  99. computed: {},
  100. //监控data中的数据变化
  101. watch: {},
  102. //方法集合
  103. methods: {},
  104. //生命周期 - 创建完成(可以访问当前this实例)
  105. created() {},
  106. //生命周期 - 挂载完成(可以访问DOM元素)
  107. mounted() {},
  108. beforeCreate() {}, //生命周期 - 创建之前
  109. beforeMount() {}, //生命周期 - 挂载之前
  110. beforeUpdate() {}, //生命周期 - 更新之前
  111. updated() {}, //生命周期 - 更新之后
  112. beforeDestroy() {}, //生命周期 - 销毁之前
  113. destroyed() {}, //生命周期 - 销毁完成
  114. activated() {}, //如果页面有keep-alive缓存功能,这个函数会触发
  115. };
  116. </script>
  117. <style lang='less' scoped>
  118. .UseC {
  119. width: 100%;
  120. .ban {
  121. position: relative;
  122. width: 100%;
  123. & > img {
  124. width: 100%;
  125. }
  126. & > h3 {
  127. position: absolute;
  128. font-size: 24px;
  129. color: #fff;
  130. left: 20px;
  131. bottom: 20px;
  132. border-bottom: 1px solid #fff;
  133. }
  134. }
  135. .main {
  136. padding: 20px 20px 40px;
  137. background: url('../../assets/img/bgUse.png');
  138. background-size: 100% 100%;
  139. .box1 {
  140. padding: 0 15px 5px;
  141. border-bottom: 1px solid #ccc;
  142. & > h3 {
  143. font-size: 22px;
  144. font-weight: 700;
  145. padding-left: 30px;
  146. background: url("../../assets/img/Layout/chosen.png") left center
  147. no-repeat;
  148. background-size: 22px 18px;
  149. margin-bottom: 5px;
  150. }
  151. .info {
  152. font-size: 14px;
  153. line-height: 30px;
  154. color: #666;
  155. overflow: hidden;
  156. zoom: 1;
  157. margin-bottom: 20px;
  158. & > span {
  159. padding: 0 0px 0 30px;
  160. display: block;
  161. }
  162. .info_1 {
  163. background: url("../../assets/img/bg_5.png") 1px 5px no-repeat;
  164. }
  165. .info_3 {
  166. background: url("../../assets/img/bg_7.png") 3px 5px no-repeat;
  167. }
  168. }
  169. }
  170. .box2 {
  171. padding: 20px 15px 0;
  172. & > h3 {
  173. font-size: 20px;
  174. font-weight: 700;
  175. margin-bottom: 15px;
  176. }
  177. &>p{
  178. font-size: 14px;
  179. line-height: 18px;
  180. color: #6A6A6A;
  181. margin-bottom: 15px;
  182. }
  183. }
  184. }
  185. }
  186. </style>