dcc
2024-06-13 3616db170333df7d668c97323344335b52c4153c
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
<!-- 交易平台 -->
<template>
  <div>
    <pc-section class="index-section1 py-12">
      <h2>{{ t("m3-pf-s0-t1") }}</h2>
      <h5>{{ t("m3-pf-s0-d1") }}</h5>
    </pc-section>
    <!-- menu-layout -->
    <menu-layout :collapseList="menu3List">
      <template v-slot:content>
        <section class="flex mb-4">
          <div class="mr-12">
            <h2>{{ t("m3-pf-s1-t1") }}</h2>
            <h5 class="border-b">
              {{ t("m3-pf-s1-d1") }}
            </h5>
            <div class="border-b flex items-center justify-between">
              {{ t("learn-more-info") }}
              <img
                src="@/assets/images/more.png"
                width="28"
                height="28"
                alt=""
                srcset=""
              />
            </div>
          </div>
          <img
            src="@/assets/images/compositeHome/menu3/image1.png"
            width="415"
            height="451"
          />
        </section>
        <section class="flex">
          <img
            class="mt-20"
            src="@/assets/images/compositeHome/menu3/image2.png"
            width="415"
            height="360"
          />
          <div class="ml-12">
            <h2>{{ t("m3-pf-s2-t1") }}</h2>
            <h5 class="border-b">
              {{ t("m3-pf-s2-d1") }}
            </h5>
            <div class="border-b flex items-center justify-between">
              {{ t("learn-more-info") }}
              <img
                src="@/assets/images/more.png"
                width="28"
                height="28"
                alt=""
                srcset=""
              />
            </div>
            <div class="border-b flex items-center justify-between">
              {{ t("m3-pf-s2-d2") }}
              <img
                src="@/assets/images/more.png"
                width="28"
                height="28"
                alt=""
                srcset=""
              />
            </div>
            <div class="border-b flex items-center justify-between">
              {{ t("m3-pf-s2-d3") }}
              <img
                src="@/assets/images/more.png"
                width="28"
                height="28"
                alt=""
                srcset=""
              />
            </div>
          </div>
        </section>
        <section class="flex">
          <div class="mr-12">
            <h2>{{ t("m3-pf-s3-t1") }}</h2>
            <h5 class="border-b">
              {{ t("m3-pf-s3-d1") }}
            </h5>
            <div class="border-b flex items-center justify-between">
              {{ t("learn-more-info") }}
              <img
                src="@/assets/images/more.png"
                width="28"
                height="28"
                alt=""
                srcset=""
              />
            </div>
            <div class="border-b flex items-center justify-between">
              {{ t("m3-pf-s3-d2") }}
              <img
                src="@/assets/images/more.png"
                width="28"
                height="28"
                alt=""
                srcset=""
              />
            </div>
          </div>
          <img
            src="@/assets/images/compositeHome/menu3/image3.png"
            width="415"
            height="512"
          />
        </section>
        <ready></ready>
      </template>
    </menu-layout>
  </div>
</template>
 
<script setup>
import { useRoute, useRouter } from "vue-router";
import { useI18n } from "vue-i18n";
import { menu3List } from "@/utils/path";
import ready from "@comCompositeHome/ready.vue";
const route = useRoute();
const { t } = useI18n();
 
const gotoPage = () => {};
</script>
<style lang="scss" scoped>
.border-b {
  border-bottom: 1px solid #d5d5d5;
  padding: 20px 0;
}
</style>