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
<template>
  <div class="flex justify-center pt-12">
    <div class="w-768">
      <h1>{{ t(`m4-mn-a${aNum}-t`) }}</h1>
      <h6>{{ t(`m4-mn-a${aNum}-ti`) }}</h6>
      <h5 class="d-line">{{ t(`m4-mn-a${aNum}-d`) }}</h5>
      <div class="content" v-html="t(`m4-mn-a${aNum}-c`)"></div>
      <div
        v-if="aNum == 2 || aNum == 1"
        class="content"
        v-html="t(`m4-mn-a${aNum}-c2`)"
      ></div>
      <div
        v-if="aNum == 2 || aNum == 1"
        class="content"
        v-html="t(`m4-mn-a${aNum}-c3`)"
      ></div>
    </div>
  </div>
</template>
 
<script setup>
import { useI18n } from "vue-i18n";
const { t } = useI18n();
const props = defineProps({
  aNum: {
    type: Number,
    default: 1,
  },
});
</script>
<style lang="scss" scoped>
.d-line {
  border-bottom: 1px solid #d8dee1;
  padding-bottom: 24px;
  margin: 16px 0 32px;
}
.w-768 {
  width: 768px;
}
 
.content {
  :deep(h5) {
    margin-bottom: 18px;
  }
}
</style>