123
dcc
2024-06-13 a30516bdf5cbfc7a953d06aee2aab3716441eb92
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
<!-- 交易时间 -->
<template>
  <div>
    <pc-section class="index-section1 py-12">
      <h2>{{ t("m2-th-s0-t1") }}</h2>
      <h5>{{ t("m2-th-s0-d1", { TITLE: $title }) }}</h5>
    </pc-section>
    <menu-layout :collapseList="menu2List">
      <template v-slot:content>
        <section class="section1">
          <h5 class="mb-4">{{ t("m2-th-s1-d1") }}</h5>
          <h5 class="mb-4">{{ t("m2-th-s1-d2") }}</h5>
          <h5 class="mb-4">{{ t("m2-th-s1-d3") }}</h5>
        </section>
        <hour-table :index="i" v-for="(_, i) in  list7 " :key="i" :beforeDesc="i === 4 ? 'm2-th-s6-d1' : ''"
          :afterDesc="i === 0 ? 'm2-th-s2-d1' : i === 3 ? 'm2-th-s5-d1' : i === 4 ? 'm2-th-s6-d2' : ''"></hour-table>
        <ready class="py-8" />
      </template>
    </menu-layout>
  </div>
</template>
 
<script setup>
import { useRoute, useRouter } from "vue-router";
import { useI18n } from "vue-i18n";
import hourTable from "@comForex/menu2/hour-table.vue";
import ready from "@comForex/ready.vue";
import { menu2List } from "@/utils/path";
 
const list7 = Array(7);
const route = useRoute();
const { t } = useI18n();
 
const gotoPage = () => { };
</script>
<style lang="scss" scoped>
.section1 {
  border-bottom: 1px solid #d8dee1;
  padding-bottom: 12px;
}
</style>