dengchaochao
2024-07-27 ce3533dad7bebb53ffc730b55e08092b19ae090c
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
<template>
  <div>
    <pc-section class="index-section1 py-12">
      <h1>{{ t("m1-who-s0-t1") }}</h1>
      <h5 class="w-500">{{ t("m1-who-s0-d1") }}</h5>
    </pc-section>
    <!-- menu-layout -->
    <menu-layout :collapseList="menu1List">
      <template v-slot:content>
        <!-- 我们的历史 -->
        <section class="flex">
          <div class="mr-12">
            <h2>{{ t("m1-who-s1-t1") }}</h2>
            <h5>{{ t("m1-who-s1-d1") }}</h5>
          </div>
          <div>
            <img
              src="@/assets/forexImages/img_v3_02bo_99f7aa4e-d3f0-41be-9e18-66ef77b6f91g.jpg"
              width="413"
              height="435"
            />
          </div>
        </section>
        <!-- 赢得全球各地交易者的信赖 -->
        <section>
          <h2 class="mb-4">{{ t("m1-who-s2-t1") }}</h2>
          <div class="flex flex-wrap">
            <card
              v-for="(item, index) in whyList"
              :index="index + 1"
              :key="index"
              :desc="item.desc"
              :imgPath="item.imgPath"
            ></card>
          </div>
        </section>
        <!-- 屡获殊荣的经纪商 -->
        <section>
          <h2 class="mb-4">{{ t("m1-who-s3-t1") }}</h2>
          <div class="flex mb-8">
            <div class="mr-12">
              <h5 class="mb-4">{{ t("m1-who-s3-d1") }}</h5>
              <el-button
                class="gray-middle-btn"
                @click="gotoPage('/why-demo/awards')"
                >{{ t("m1-award-s4-b1") }}</el-button
              >
            </div>
            <img
              src="/src/assets/forexImages/menu1/who/image2.png"
              width="410"
              height="224"
            />
          </div>
        </section>
        <!-- 还想了解更多吗? -->
        <h2>{{ t("m1-who-s4-t1") }}</h2>
        <h5 v-html="t('m1-who-s4-d1')"></h5>
        <!-- 准备好了吗 -->
        <ready class="py-8"></ready>
        <h5 class="fs-14 my-16" v-html="t('m1-who-s6-d1')"></h5>
      </template>
    </menu-layout>
  </div>
</template>
 
<script setup>
import { useRoute, useRouter } from "vue-router";
import { useI18n } from "vue-i18n";
import card from "@comForex/cardCommon.vue";
import ready from "@comForex/ready.vue";
import { menu1List } from "@/utils/path";
const router = useRouter();
const { t } = useI18n();
 
const whyList = [
  {
    desc: t("m1-who-s2-d1"),
    imgPath: "/src/assets/forexImages/menu1/who/icon1.png",
  },
  {
    desc: t("m1-who-s2-d2"),
    imgPath: "/src/assets/forexImages/menu1/who/icon2.png",
  },
  {
    desc: t("m1-who-s2-d3"),
    imgPath: "/src/assets/forexImages/menu1/who/icon3.png",
  },
];
 
const gotoPage = (path) => {
  router.push(path);
};
</script>
<style lang="scss" scoped>
.w-500 {
  width: 500px;
}
.fs-14 {
  font-size: 14px;
}
</style>