交易所前端蓝色ui 4.5 jiem
lxf
2025-04-18 02a3d94d359b34e915f34abec024cbc1504a6a7c
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
<template>
  <div>
    <pc-section class="index-section1" innerclass="flex">
      <div class="flex flex-col justify-center">
        <h2>{{ t("m5-i-s0-t1") }}</h2>
        <h5>{{ t("m5-i-s0-d1") }}</h5>
      </div>
      <img src="@/assets/forexImages/menu5/h0.png" width="626" height="296" />
    </pc-section>
    <!-- 导航 -->
    <pc-section>
      <navigator></navigator>
    </pc-section>
    <pc-section innerclass="text-center">
      <!-- 学习交易外汇 -->
      <div>
        <h2 class="mt-8">{{ t("m5-i-s1-t1") }}</h2>
        <h5 class="mb-8">{{ t("m5-i-s1-d1") }}</h5>
        <div class="grid grid-cols-3 gap-x-3">
          <div class="card-wrapper" v-for="(_, i) in list3" :key="i">
            <img
              :src="getImageUrl(`/src/assets/forexImages/menu5/h${i + 1}.png`)"
              width="404"
              height="180"
            />
            <div class="p-8 text-left">
              <span class="green-tag">{{ t("Beginner") }}</span>
              <h5 class="fs-24 fw-400 mb-4">{{ t(`m5-i-s1-${i + 1}-t1`) }}</h5>
              <h6 class="mb-4">{{ t(`m5-i-s1-${i + 1}-d1`) }}</h6>
              <div class="link-middle-text cursor-pointer">
                {{ t("m5-i-s1-b1") }}
              </div>
            </div>
          </div>
        </div>
      </div>
      <!-- 查看全部 -->
      <el-button class="gray-middle-btn my-8 fw-400">{{
        t("m5-i-s2-b1")
      }}</el-button>
    </pc-section>
    <ready-bg></ready-bg>
  </div>
</template>
 
<script setup>
import { useRoute, useRouter } from "vue-router";
import { useI18n } from "vue-i18n";
import readyBg from "@comForex/readyWithBg.vue";
import navigator from "@comForex/navigator.vue";
import { getImageUrl } from "@/utils";
 
const route = useRoute();
const { t } = useI18n();
const list3 = Array(3);
</script>
<style lang="scss" scoped>
.green-line {
}
.green-tag {
  background: #9bdfce;
  border-radius: 2px;
  padding: 4px 12px;
  display: inline-block;
  margin-bottom: 24px;
}
.card-wrapper {
  box-shadow: 0px 2px 8px 4px rgba(0, 0, 0, 0.05);
}
 
.fw-400 {
  font-weight: 400;
}
</style>