index.vue 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. <template>
  2. <page-layout>
  3. <nav-bar title=" " transparent></nav-bar>
  4. <view class="body">
  5. <text class="title">
  6. 免责声明
  7. </text>
  8. <view class="content">
  9. <view class="margin-bottom">
  10. 本系统内容由展商提供,慕尼黑展览(上海)有限公司(以下简称“MM-SH”)不对内容的正确性、完整性和最新状态承担任何责任。
  11. </view>
  12. <view class="margin-bottom">
  13. 本系统中包含第三方外部网站的链接,我们无法控制这些网站的内容。在任何情况下,相关网站提供者或运营者须对链接网站的内容负责,MM-SH不对此承担任何责任。
  14. </view>
  15. <view class="margin-bottom">
  16. MM-SH特别保留权利更改或扩展本系统所提供内容,恕不另行通知。您基于由本系统或经本系统提供的信息作出决定,须自行承担风险。MM-SH不对因使用由本系统或经本系统提供的信息造成的任何直接或间接损失承担赔偿责任。
  17. </view>
  18. <view class="margin-bottom">
  19. 对任何因直接或间接使用本系统内容而造成的任何损失,包括但不限于因有关内容有错误、遗漏、病毒等而导致的损失,MM-SH不对此承担任何法律责任。
  20. </view>
  21. <view class="margin-bottom">
  22. 本系统中有关展商的信息、图片、logo等均由相应展商提供(展商未提供展商logo的,统一显示展会logo),不得擅自下载或使用。如您有异议,请联系慕尼黑展览(上海)有限公司。
  23. </view>
  24. </view>
  25. </view>
  26. </page-layout>
  27. </template>
  28. <script>
  29. import NavBar from '@/components/layout/nav-bar'
  30. import {
  31. getClauseInfo
  32. } from '@/api/exhibitor'
  33. import PageLayout from "@/components/layout/page-layout";
  34. export default {
  35. data() {
  36. return {
  37. clauseInfo: {}
  38. }
  39. },
  40. components: {
  41. PageLayout,
  42. NavBar
  43. },
  44. mounted() {
  45. this.getClauseData()
  46. },
  47. methods: {
  48. getClauseData() {
  49. getClauseInfo({key: "disclaimer"}).then(res => {
  50. this.clauseInfo = res.data
  51. })
  52. }
  53. }
  54. }
  55. </script>
  56. <style lang="scss">
  57. .container {
  58. }
  59. .margin-bottom {
  60. margin-bottom: 26rpx;
  61. }
  62. .body {
  63. padding: 50rpx;
  64. }
  65. .title {
  66. font-size: $fontSize4;
  67. color: $fontTitleColor;
  68. display: block;
  69. font-weight: bold;
  70. text-align: justify;
  71. }
  72. .content {
  73. font-size: $fontSize2;
  74. color: $fontColor;
  75. line-height: 1.9;
  76. display: block;
  77. margin-top: 32rpx;
  78. margin-bottom: 42rpx;
  79. text-align: justify;
  80. }
  81. </style>