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
<template>
  <div>
    <pc-section class="index-section1 py-12">
      <h1>{{ t("m1-award-s0-t1") }}</h1>
      <h5 class="w-500">{{ t("m1-award-s0-d1") }}</h5>
    </pc-section>
    <menu-layout :collapseList="menu1List">
      <template v-slot:content>
        <section v-for="(item, _index) in contentList" :key="_index">
          <div>
            <h2 v-if="item.time">{{ item?.time }}</h2>
            <h2 class="mb-4 fs-32">{{ t(`m1-award-s${_index + 1}-t1`) }}</h2>
            <h5 class="mb-4">{{ t(`m1-award-s${_index + 1}-d1`) }}</h5>
          </div>
          <div class="flex flex-wrap">
            <card-why
              v-for="(item, index) in item.awardNum"
              :index="index + 1"
              :key="index"
              :desc="`${t(`m1-award-s${_index + 1}-a${index + 1}`)}`"
            ></card-why>
          </div>
        </section>
        <ready class="pb-8"></ready>
      </template>
    </menu-layout>
  </div>
</template>
 
<script setup>
import { useRoute, useRouter } from "vue-router";
import { useI18n } from "vue-i18n";
import cardWhy from "@comForex/cardCommon.vue";
import { menu1List } from "@/utils/path";
import ready from "@comForex/ready.vue";
const route = useRoute();
const { t } = useI18n();
 
const contentList = [
  {
    time: 2019,
    awardNum: 2,
  },
  {
    time: 2019,
    awardNum: 2,
  },
  {
    time: 2018,
    awardNum: 1,
  },
  {
    awardNum: 2,
  },
  {
    time: 2018,
    awardNum: 3,
  },
  {
    time: 2017,
    awardNum: 6,
  },
  {
    awardNum: 2,
  },
  {
    awardNum: 2,
  },
  {
    time: 2016,
    awardNum: 8,
  },
];
 
const gotoPage = () => {};
</script>
<style lang="scss" scoped>
.w-500 {
  width: 500px;
}
</style>