111
jhzh
2024-08-01 f109903a10edae129d9f5fef9822cdc2bcf46283
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
<template>
  <div class="CommonProblem">
    <assets-head :title="serviceTerm ? $t('服务条款') : $t('关于我们')" />
    <div class="CommonProblem-padding" style="padding: 10px 10px">
<!--      <p class="textColor" v-html="content"></p>-->
      <div class="a1">
        {{$t('WorldCoinPro简介')}}
      </div>
      <div class="a2">
        {{$t('WorldCoinPro简介2')}}
      </div>
      <div class="a1">
        {{$t('团队背景')}}
      </div>
      <div class="a2">
        {{$t('团队背景2')}}
      </div>
      <div class="a1">
        {{$t('我们的任务')}}
      </div>
      <div class="a2">
        {{$t('我们的任务2')}}
      </div>
      <div class="a1">
        {{$t('我们的技术')}}
      </div>
      <div class="a2">
        {{$t('我们的技术2')}}
      </div>
      <div class="a1">
        {{$t('加密货币简介')}}
      </div>
      <div class="a2">
        {{$t('加密货币简介2')}}
      </div>
      <div class="a1">
        {{$t('公司证书')}}
      </div>
      <div class="a2">
        {{$t('附件1WorldCoinPro美国MSB金融牌照')}}
      </div>
     <div class="flex-center">
       <img src="../../assets/zs1.jpg" class="img1"/>
     </div>
      <div class="a2">
        {{$t('附件2WorldCoinPro美国良好证明')}}
      </div>
      <div class="flex-center">
        <img src="../../assets/zs2.jpg" class="img1"/>
      </div>
      <div class="a2">
        {{$t('附件3WorldCoinPro美国注册证书')}}
      </div>
      <div class="flexY-center">
        <img src="../../assets/zs4.jpg" class="img1"/>
        <img src="../../assets/zs3.jpg" class="img1"/>
      </div>
    </div>
  </div>
</template>
<script>
import assetsHead from "@/components/assets-head";
import Axios from "@/API/userCenter.js";
import { dataTimeEx } from '@/utils/utis'
export default {
  data() {
    return {
      content: '',
      title: '',
      createTime: '',
      serviceTerm: '',
      dataTimeEx
    }
  },
  components: {
    assetsHead
  },
  mounted() {
    this.serviceTerm = this.$route.query.serviceTerm
    this.getCms();
  },
  methods: {
    onClickLeft() {
      this.$router.push('/')
    },
    getCms() {
      let language
      if (this.$i18n.locale == 'zh-CN' || this.$i18n.locale == 'CN') {
        language = this.$i18n.locale
      } else {
        language = 'en'
      }
      Axios.getCms({
        content_code: this.serviceTerm ? '001' : '020',
        language: this.serviceTerm ? language : this.$i18n.locale,
      }).then((res) => {
        this.content = res.data.content
        this.title = res.data.title
        this.createTime = this.dataTimeEx(res.data.createTime)
 
      }).catch((error) => {
        if (error.msg !== undefined) { this.$toast(this.$t(error.msg)); }
        else if (error.code == 'ECONNABORTED') { this.$toast(this.$t('网络超时!')); }
      });
    }
  }
}
</script>
<style lang="scss" scoped>
.img1{
  width: 100%;
}
.a1{
  font-size: 40px;
  margin-bottom: 20px;
  margin-top: 30px;
  font-weight: bold;
  color: #333333;
}
 
.a2{
  font-size: 28px;
  line-height: 55px;
  color: #999999;
  margin-top: 10px;
  white-space: pre-wrap;
}
.CommonProblem {
  width: 100%;
  box-sizing: border-box;
}
 
pre {
  white-space: pre-wrap;
}
 
.CommonProblem-padding {
  padding-left: 35px;
  padding-right: 35px;
  font-weight: 400;
  font-size: 30px;
  line-height: 35px;
 
  @include themify() {
    color: themed("text_color");
  }
}
 
.CommonProblem-title {
  font-style: normal;
  font-weight: 700;
  font-size: 50px;
  line-height: 59px;
 
  /* identical to box height */
  @include themify() {
    color: themed("text_color");
  }
 
  padding-left: 35px;
  padding-right: 35px;
  margin-top: 57px;
  margin-bottom: 22px;
}
</style>