123
dcc
2024-06-11 1a0dfc3414d02b4247e2160436d37413da8bf295
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
<template>
  <div>
    <pc-section class="index-section1 py-12">
      <h1>{{ t("cu-s0-t1") }}</h1>
      <h5 class="w-500">{{ t("cu-s0-d1") }}</h5>
    </pc-section>
    <pc-section class="py-12" innerclass="grid grid-cols-2 grid-x-12">
      <!-- 电话 -->
      <div>
        <h2 class="fs-24">{{ t("24/7") }}</h2>
        <div class="pr-28 flex justify-between">
          <h5>{{ t("cu-s1-1-d1") }}</h5>
          <h5 class="link-middle-text" @click="gotoPage('tel')">
            {{ t("+1786 628 1209") }}
          </h5>
        </div>
      </div>
 
      <!-- 其他 -->
      <div>
        <h2 class="fs-24">{{ t("cu-s1-2-t1") }}</h2>
        <div class="pr-16 flex justify-between">
          <h5>{{ t("cu-s1-2-d1") }}</h5>
          <h5 class="link-middle-text" @click="gotoPage('mail')">
            {{ t("support@pepperstone.com") }}
          </h5>
        </div>
        <div class="pr-16 flex justify-between">
          <h5>{{ t("cu-s1-2-d2") }}</h5>
          <h5 class="link-middle-text" @click="gotoPage('mail')">
            {{ t("marketing@pepperstone.com") }}
          </h5>
        </div>
      </div>
    </pc-section>
  </div>
</template>
 
<script setup>
import { useI18n } from "vue-i18n";
const { t } = useI18n();
 
const gotoPage = (path) => {
  if (path === "mail") {
    window.location.href = "mailto:support@pepperstone.com";
    return;
  }
  if (path === "tel") {
    window.location.href = "tel:+1786 628 1209";
    return;
  }
};
</script>
<style lang="scss" scoped>
.w-500 {
  width: 500px;
}
</style>