新币+dapp app 前端
dcc
2024-05-31 3d5dba0e5d348f567a6bd02e976cbc980d572fd5
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
<template>
  <div>
    <assets-head :title="$t('推广规则')"/>
    <div class=" w-828 p-40 box-border flex flex-col items-start justify-center">
      <img src="https://ibhfdhb.site/assets/img/rule1.7ae51b95.jpg" alt="" class="w-full mt-8 mb-8">
      <div class="mt-30 contp">
        <p>{{$t('promoteRules1')}}</p>
        <p>{{$t('promoteRules2')}}</p>
        <p>{{$t('promoteRules3')}}</p>
        <p>{{$t('promoteRules4')}}</p>
        <p>{{$t('promoteRules5')}}</p>
        <p>{{$t('promoteRules6')}}</p>
        <p>{{$t('promoteRules7')}}</p>
        <p>{{$t('promoteRules8')}}</p>
        <p>{{$t('promoteRules9')}}</p>
        <p>{{$t('promoteRules10')}}</p>
        <p>{{$t('promoteRules11')}}</p>
        <p>{{$t('promoteRules12')}}</p>
      </div>
    </div>
  </div>
</template>
 
<script>
import assetsHead from "@/components/assets-head";
 
export default {
  components: {
    assetsHead
  },
  data() {
    return {
      list: [
        {
          id: 1, title: 'A', conent: [
            {id: 11, from: 'A', to: 'B', rate: 5},
            {id: 12, from: 'A', to: 'C', rate: 3},
            {id: 13, from: 'A', to: 'D', rate: 2},
            {id: 14, from: 'A', to: 'E', rate: 1},
          ]
        },
        {
          id: 2, title: 'B', conent: [
            {id: 21, from: 'B', to: 'C', rate: 5},
            {id: 22, from: 'B', to: 'D', rate: 3},
            {id: 23, from: 'B', to: 'E', rate: 2},
            {id: 24, from: 'B', to: 'E-1', rate: 1},
          ]
        },
        {
          id: 3, title: 'C', conent: [
            {id: 31, from: 'C', to: 'D', rate: 5},
            {id: 32, from: 'C', to: 'E', rate: 3},
            {id: 33, from: 'C', to: 'E-1', rate: 2},
            {id: 34, from: 'C', to: 'E-2', rate: 1},
          ]
        }
      ]
    }
  },
  methods: {
    onClickLeft() { // 后退
      this.$router.go(-1)
    }
  }
}
</script>
<style lang="scss" scoped>
.advise {
  background: url("./share-bg.png") no-repeat center center;
  background-size: 100% 100%;
}
</style>