jhzh
2024-09-23 e678ec74066a2c5b5b3b404d3344bffbd3cf59bd
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
74
75
76
77
78
79
80
81
82
83
84
<template>
  <div class="t-card">
    <div class="title flex justify-between">
      <p style="color: #21262f">
        <span v-if="item.isBuy" style="color: #2EBD85">{{$t('购买')}}</span>
        <span v-else style="color: #e35461">{{$t('出售')}}</span> {{$t('USDT 用 CNY')}}
      </p>
      <p class="close">{{$t('已关闭')}}</p>
    </div>
    <p class="price">
      ¥
      <span>{{ item.price }}</span>
    </p>
    <p class="flex justify-between count">
      <span>{{$t('广告数量')}}</span>
      <span class="num">{{ item.count }} USDT</span>
    </p>
    <p class="flex justify-between count">
      <span>{{$t('单笔限额')}}</span>
      <span class="num">{{ item.minCount }} - {{ item.maxCount }} RMB</span>
    </p>
    <div class="yin flex items-center">
      <div class="shu"></div>
      <span>{{$t('银行卡')}}</span>
    </div>
  </div>
</template>
 
<script>
export default {
  props: ['item'],
}
</script>
 
<style lang="scss" scoped>
.t-card {
  background: #fff;
  padding: 28px;
  margin: 32px 32px 0 32px;
  border-radius: 10px;
  font-size: 32px;
  color: #868d9a;
  .title {
    margin-bottom: 32px;
    .close {
      width: 116px;
      height: 48px;
      background: #f5f5f5;
      border-radius: 6px;
      text-align: center;
      line-height: 48px;
      font-size: 28px;
    }
  }
  .price {
    color: #000;
    font-weight: bold;
    margin-bottom: 30px;
    span {
      font-size: 52px;
    }
  }
  .count {
    font-size: 28px;
    margin-bottom: 28px;
    .num {
      color: #000;
      font-weight: bold;
    }
  }
  .yin {
    border-top: 1px solid #484756;
    padding-top: 38px;
    font-size: 24px;
    .shu {
      width: 7px;
      height: 29px;
      border-radius: 14px;
      background: #e7bb41;
      margin-right: 13px;
    }
  }
}
</style>