1
lxf
2025-06-23 1e47b1681854ea564215482fb3b2d73934fa3edc
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
<template>
  <div id="cryptos">
    <div class="loanRule">
      <assets-head :title="$t('规则')" />
      <div class="container px-30 mt-40">
        <div class="textColor" v-for="(item, index) in ruleList" :key="index">
          <div class="mb-30">{{ item.title }}</div>
          <div class="mb-30 whiteSpace">{{ item.content }}</div>
        </div>
      </div>
    </div>
  </div>
</template>
 
<script>
import AssetsHead from "@/components/Transform/assets-head/index.vue";
 
export default {
  name: "loanRule",
  data() {
    return {
      ruleList: [
        { title: this.$t('loanRuleTitle1'), content: this.$t('loanRuleContent1') },
        { title: this.$t('loanRuleTitle2'), content: this.$t('loanRuleContent2') },
        { title: this.$t('loanRuleTitle3'), content: this.$t('loanRuleContent3') },
        { title: this.$t('loanRuleTitle4'), content: this.$t('loanRuleContent4') },
        { title: this.$t('loanRuleTitle5'), content: this.$t('loanRuleContent5') },
        { title: this.$t('loanRuleTitle6'), content: this.$t('loanRuleContent6') },
        { title: this.$t('loanRuleTitle7'), content: this.$t('loanRuleContent7') },
        { title: this.$t('loanRuleTitle8'), content: this.$t('loanRuleContent8') },
        { title: this.$t('loanRuleTitle9'), content: this.$t('loanRuleContent9') },
        { title: this.$t('loanRuleTitle10'), content: this.$t('loanRuleContent10') },
        { title: this.$t('loanRuleTitle11'), content: this.$t('loanRuleContent11') },
        { title: this.$t('loanRuleTitle12'), content: this.$t('loanRuleContent12') },
      ]
    }
  },
  components: { AssetsHead }
}
</script>
 
<style  lang="scss">
@import "@/assets/init.scss";
 
#cryptos {
  font-size: 30px;
  .whiteSpace {
    white-space: pre-line;
  }
}
</style>