1
lxf
2025-06-23 1e47b1681854ea564215482fb3b2d73934fa3edc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<template>
  <div class="CommonProblem">
    <fx-header>
      <template #title>
        {{ $t('termsOfService') }}
      </template>
    </fx-header>
    <div class="lang">
      <iframe style="width: 100%;height:700px;" src="pdf/web/viewer.html?file=white_paper.pdf"></iframe>
    </div>
  </div>
</template>
<script setup>
import { _getCms } from "@/service/login.api";
import { useI18n } from "vue-i18n";
import { ref, onMounted } from "vue";
const { locale } = useI18n()
 
const content = ref('')
 
 
 
onMounted(() => {
  // getCms();
})
 
 
const getCms = () => {
  _getCms({
    content_code: '020',
    language: locale.value,
  }).then((res) => {
    content.value = res ? res.content : ''
  })
}
 
</script>
<style lang="scss" >
.CommonProblem {
  width: 100%;
  box-sizing: border-box;
}
 
pre {
  white-space: pre-wrap;
}
 
.CommonProblem-padding {
  padding-left: 18px;
  padding-right: 18px;
  font-weight: 400;
  font-size: 15px;
  line-height: 18px;
  color: $text_color4;
}
 
.CommonProblem-title {
  font-style: normal;
  font-weight: 700;
  font-size: 25px;
  line-height: 30px;
  /* identical to box height */
  color: $text_color4;
  padding-left: 18px;
  padding-right: 18px;
  margin-top: 29px;
  margin-bottom: 11px;
}
</style>