1
jhzh
2024-08-12 f1dc8f5a7f3a661ce19513a9ad47fe18e3e883ff
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
103
104
105
<!-- 大宗商品 -->
<template>
  <menu-layout :collapseList="menu2List">
    <template v-slot:content>
      <section class="section1">
        <h2>{{ t("m2-product-3-s1-t1") }}</h2>
        <h5>{{ t("m2-product-3-s1-d1") }}</h5>
      </section>
      <!-- 为什么要在eypmj交易商品差价合约? -->
      <section class="pt-8">
        <h2>{{ t("m2-product-3-s2-t1") }}</h2>
        <card
          v-for="(item, index) in list5"
          :key="index"
          :desc="t(`m2-product-3-s2-d${index + 1}`)"
        ></card>
      </section>
      <!-- 商品点差和可交易产品 -->
      <section class="pt-8">
        <h2>{{ t("m2-product-3-s3-t1") }}</h2>
        <el-tabs v-model="activeName" class="demo-tabs">
          <el-tab-pane
            :label="t(`m2-product-3-s3-${i + 1}`)"
            :name="i"
            v-for="(_, i) in list4"
            :key="i"
          >
            <el-table :data="tableDataC[i]" class="self-table">
              <el-table-column
                v-for="(item, index) in tableLsitC[i]"
                :key="index"
                :prop="item.prop"
                :label="t(item.label)"
              />
            </el-table>
          </el-tab-pane>
        </el-tabs>
      </section>
      <!-- 随时了解有关商品的市场新闻,分析和见解 -->
      <section class="flex py-8">
        <img
          src="@/assets/forexImages/menu2/image6.png"
          width="413"
          height="275"
        />
        <div class="ml-8">
          <p class="text-4xl font-semibold my-4">
            {{ t("m2-product-3-s4-t1") }}
          </p>
          <el-button class="gray-middle-btn mb-8" @click="gotoPage">{{
            t("find-more")
          }}</el-button>
        </div>
      </section>
      <ready class="py-8"></ready>
    </template>
  </menu-layout>
</template>
 
<script setup>
import { useRoute, useRouter } from "vue-router";
import { useI18n } from "vue-i18n";
import card from "@comForex/menu2/card.vue";
import { menu2List } from "@/utils/path";
import ready from "@comForex/ready.vue";
import { tableDataC, tableLsitC } from "./table-data";
const router = useRouter();
const { t } = useI18n();
 
const list5 = Array(5);
const list4 = Array(4);
const activeName = ref(0);
 
const tableList = [
  {
    prop: "product",
  },
  {
    prop: "size",
  },
  {
    prop: "value",
  },
  {
    prop: "min",
  },
  {
    prop: "ave",
  },
 
  {
    prop: "lever",
  },
];
 
const gotoPage = () => {
  router.push("/market-analysis");
};
</script>
<style lang="scss" scoped>
.section1 {
  border-bottom: 1px solid #d8dee1;
  padding-bottom: 12px;
}
</style>