交易所前端蓝色ui 4.5 jiem
dcc
2024-06-13 fad052d0879be9d0bf85794ad686d4badaedd864
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
<template>
  <div>
    <pc-section class="index-section1" innerclass="grid grid-cols-2">
      <div class="pr-20 mt-10">
        <h1>{{ t("header-rf-s0-t1") }}</h1>
        <h5>{{ t("header-rf-s0-d1") }}</h5>
      </div>
      <img
        src="/src/assets/forexImages/header/refer-friend.png"
        width="626"
        height="312"
      />
    </pc-section>
    <menu-layout :collapseList="menu2List">
      <template v-slot:content>
        <section>
          <h2>{{ t("header-rf-s1-t1") }}</h2>
          <h5 class="mb-4">{{ t("header-rf-s1-d1") }}</h5>
          <!-- 表格 -->
          <el-table :data="tableData" class="self-table">
            <el-table-column
              v-for="(item, i) in tableList"
              :key="i"
              :prop="item.prop"
              :label="t(`header-rf-s1-h${i + 1}`)"
            />
          </el-table>
          <!--常见的问题 -->
          <h2 class="mt-4">{{ t("header-rf-s2-t1") }}</h2>
          <el-collapse v-model="questionActive" class="question-collapse">
            <el-collapse-item
              :title="t(`header-rf-s2-q${i + 1}`)"
              :name="i"
              v-for="(_, i) in list2"
              :key="i"
            >
              <h6>{{ t(`header-rf-s2-a${i + 1}`) }}</h6>
            </el-collapse-item>
          </el-collapse>
          <!-- 提示 -->
          <h5 class="mt-20" v-html="t('header-rf-s3-tip1')"></h5>
        </section>
      </template>
    </menu-layout>
  </div>
</template>
 
<script setup>
import { useRoute, useRouter } from "vue-router";
import { useI18n } from "vue-i18n";
import { menu2List } from "@/utils/path";
const questionActive = ref();
 
const route = useRoute();
const { t } = useI18n();
const list2 = Array(2);
const tableList = [
  {
    prop: "v1",
  },
  {
    prop: "v2",
  },
];
const tableData = [
  {
    v1: t("header-rf-s1-r1"),
    v2: t("header-rf-s1-r2"),
  },
];
 
const gotoPage = () => {};
</script>
<style lang="scss" scoped>
.test {
  font-size: 12px;
}
</style>