dcc
2024-06-13 cfdf967764dc6747a7b414b33fb993aeede1294d
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
<!-- 社交平台交易 -->
<template>
  <div>
    <pc-section class="index-section1 py-12">
      <h1>{{ t("m3-st-h-s0-t1") }}</h1>
      <h5>{{ t("m3-st-h-s0-d1") }}</h5>
    </pc-section>
    <!-- menu-layout -->
    <menu-layout :collapseList="menu3List">
      <template v-slot:content>
        <section>
          <h2>{{ t("m3-st-h-s1-t1", { TITLE: $title }) }}</h2>
          <h5>{{ t("m3-st-h-s1-d1") }}</h5>
          <div class="flex flex-wrap my-4">
            <div class="s1-block mb-4" v-for="(_, i) in list4" :key="i" :class="[0, 2].includes(i) ? 'mr-4' : ''">
              <img :src="getImageUrl(`/src/assets/forexImages/menu3/ct${i}.png`)" width="380" height="254" />
              <div class="s1-block-content">
                <h2 class="fs-24">{{ t(`m3-st-h-s1-${i + 1}-t1`) }}</h2>
                <h5>
                  {{ t(`m3-st-h-s1-${i + 1}-d1`) }}
                </h5>
                <div class="link-middle-text mt-4 cursor-pointer">
                  {{ t("learn-more-info") }}
                </div>
              </div>
            </div>
          </div>
        </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";
import { getImageUrl } from "@/utils/index";
const list4 = Array(4);
const route = useRoute();
const { t } = useI18n();
 
const gotoPage = () => { };
</script>
<style lang="scss" scoped>
.s1-block {
  width: 380px;
 
  &-content {
    padding: 32px;
    box-shadow: 0px 4px 6px 6px rgba(0, 0, 0, 0.05);
  }
}
</style>