zj
2024-06-03 cd10c1c4b723da0ae8496bf9c4f68a12e159fd97
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
<!-- 交易平台 -->
<template>
  <div>
    <pc-section class="index-section1 py-12">
      <h2>{{ t("m3-pf-s0-t1") }}</h2>
      <h5>{{ t("m3-pf-s0-d1") }}</h5>
    </pc-section>
    <!-- menu-layout -->
    <menu-layout :collapseList="menu3List">
      <template v-slot:content>
        <section class="flex mb-4">
          <div class="mr-12">
            <h2>{{ t("m3-pf-s1-t1") }}</h2>
            <h5 class="border-b">
              {{ t("m3-pf-s1-d1") }}
            </h5>
            <div class="border-b flex items-center justify-between">
              {{ t("learn-more-info") }}
              <img src="@/assets/images/more.png" width="28" height="28" alt="" srcset="" />
            </div>
          </div>
          <img src="@/assets/forexImages/menu3/image1.png" width="415" height="451" />
        </section>
        <section class="flex">
          <img class="mt-20" src="@/assets/forexImages/menu3/image2.png" width="415" height="360" />
          <div class="ml-12">
            <h2>{{ t("m3-pf-s2-t1") }}</h2>
            <h5 class="border-b">
              {{ t("m3-pf-s2-d1") }}
            </h5>
            <div class="border-b flex items-center justify-between">
              {{ t("learn-more-info") }}
              <img src="@/assets/images/more.png" width="28" height="28" alt="" srcset="" />
            </div>
            <div class="border-b flex items-center justify-between">
              {{ t("m3-pf-s2-d2") }}
              <img src="@/assets/images/more.png" width="28" height="28" alt="" srcset="" />
            </div>
            <div class="border-b flex items-center justify-between">
              {{ t("m3-pf-s2-d3") }}
              <img src="@/assets/images/more.png" width="28" height="28" alt="" srcset="" />
            </div>
          </div>
        </section>
        <section class="flex">
          <div class="mr-12">
            <h2>{{ t("m3-pf-s3-t1") }}</h2>
            <h5 class="border-b">
              {{ t("m3-pf-s3-d1") }}
            </h5>
            <div class="border-b flex items-center justify-between">
              {{ t("learn-more-info") }}
              <img src="@/assets/images/more.png" width="28" height="28" alt="" srcset="" />
            </div>
            <div class="border-b flex items-center justify-between">
              {{ t("m3-pf-s3-d2") }}
              <img src="@/assets/images/more.png" width="28" height="28" alt="" srcset="" />
            </div>
          </div>
          <img src="@/assets/forexImages/menu3/image3.png" width="415" height="512" />
        </section>
        <ready></ready>
      </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 route = useRoute();
const { t } = useI18n();
 
const gotoPage = () => { };
</script>
<style lang="scss" scoped>
.border-b {
  border-bottom: 1px solid #d5d5d5;
  padding: 20px 0;
}
</style>