1
PC-20250623MANY\Administrator
2025-07-22 beff59e6065d3283cc9fb10fe7151f2b757cd154
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
<!-- 社交平台交易-DupliTrade -->
<template>
  <div>
    <menu-layout :collapseList="menu3List">
      <template v-slot:content>
        <section class="section1">
          <h2>{{ t("m3-st-d-s1-t1") }}</h2>
          <h5>{{ t("m3-st-d-s1-d1") }}</h5>
        </section>
        <section>
          <!-- 您可轻松加入 -->
          <div class="flex mt-8">
            <div class="mr-4">
              <h2>{{ t(`m3-st-d-s2-t1`) }}</h2>
              <h5>{{ t(`m3-st-d-s2-d1`) }}</h5>
            </div>
            <img
              src="/src/assets/forexImages/menu3/d1.png"
              width="413"
              height="370"
            />
          </div>
          <!-- 立即开始 -->
          <div class="blue-border my-8">
            <h2>{{ t("m3-st-d-s3-t1") }}</h2>
            <h5 v-html="t('m3-st-d-s3-d1')"></h5>
          </div>
          <!-- 免责声明 -->
          <p class="text-gray-tip" v-html="t('m3-st-d-s4-d1')"></p>
          <p class="text-gray-tip tip-top" v-html="t('m3-st-d-s4-d2')"></p>
        </section>
      </template>
    </menu-layout>
  </div>
</template>
 
<script setup>
import { useRoute, useRouter } from "vue-router";
import { useI18n } from "vue-i18n";
import { menu3List } from "@/utils/path";
import ready from "@comForex/ready.vue";
const list3 = Array.from({ length: 3 });
const route = useRoute();
const { t } = useI18n();
 
const gotoPage = () => {};
</script>
<style lang="scss" scoped>
.section1 {
  border-bottom: 1px solid #d8dee1;
  padding-bottom: 12px;
}
.tip-top {
  margin-top: 8px;
}
</style>