11
jhzh
2024-08-01 4ebbadfe4c8c7aa6404dcd9b126cc8265bf03c0d
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
<template>
  <div class="recharge box-border">
    <assets-head :title="$t('充值通道')">
      <img
        src="../../assets/image/assets-center/exchange.png"
        alt="exchange-img"
        class="w-44 h-38"
        @click="goRouter('/assetsCenter/rechargeWithdrawRecord?back=1')"
      />
    </assets-head>
    <div class="pl-36 pr-36">
      <div class="recharge-title font-35 textColor">
        {{ $t("请选择充值币种") }}
      </div>
      <div class="recharge-list flex">
        <div
          class="item-view flex flex-col items-center justify-center text-center w-189 h-220 box-border"
          @click="selectSymbol('eth', 'eth')"
        >
          <img src="../../assets/image/symbol/eth.png" class="w-92 h-92" />
          <div class="text-grey font-26 mt-32">{{ $t("ETH充值") }}</div>
        </div>
        <div
          class="item-view flex flex-col items-center justify-center text-center w-189 h-220 box-border"
          @click="selectSymbol('btc', 'btc')"
        >
          <img src="../../assets/image/symbol/btc.png" class="w-92 h-92" />
          <div class="text-grey font-26 mt-32">{{ $t("BTC充值") }}</div>
        </div>
       <!-- <div
          class="item-view flex flex-col items-center justify-center text-center w-189 h-220 box-border"
          @click="selectSymbol('eth', 'bnb')"
        >
          <img src="../../assets/image/symbol/bnb.png" class="w-92 h-92" />
          <div class="text-grey font-26 mt-32">{{ $t("BNB充值") }}</div>
        </div> -->
        <div
          class="item-view flex flex-col items-center justify-center text-center w-189 h-220 box-border"
          @click="selectSymbol('trx', 'usdt')"
        >
          <img src="../../assets/image/symbol/usdt.png" class="w-92 h-92" />
          <div class="text-grey font-26 mt-32">{{ $t("USDT充值") }}</div>
        </div>
       <!-- <div
          class="item-view flex flex-col items-center justify-center text-center w-189 h-220 box-border"
          @click="selectSymbol('eth', 'usdc')"
        >
          <img src="../../assets/image/symbol/usdc.png" class="w-92 h-92" />
          <div class="text-grey font-26 mt-32">{{ $t("USDC充值") }}</div>
        </div> -->
      </div>
    </div>
  </div>
</template>
 
<script>
import assetsHead from "@/components/assets-head";
import { Icon } from "vant";
export default {
  name: "rechageList",
  components: {
    assetsHead,
    [Icon.name]: Icon,
  },
  data() {
    return {
      list: [
        {
          name: "Huobi",
          url: "https://www.huobi.com/en-us/",
          imgPath: require("../../assets/image/huobi.png"),
        },
        {
          name: "Binance",
          url: "https://www.binance.com/en",
          imgPath: require("../../assets/image/bian.png"),
        },
        {
          name: "Coinbase",
          url: "https://www.coinbase.com/",
          imgPath: require("../../assets/image/coinbase.png"),
        },
        {
          name: "Crypto",
          url: "https://www.crypto.com/",
          imgPath: require("../../assets/image/crypto.png"),
        },
      ],
    };
  },
  created() {},
  methods: {
    toPath(url) {
      const a = document.createElement("a");
      a.href = url;
      a.target = "_bank";
      document.body.append(a);
      a.click();
      document.body.removeChild(a);
      // if (navigator.userAgent.search('Html5Plus') != -1) {
      //     plus.runtime.openURL(url)
      // } else {
      //     window.open(url)
      // }
    },
    onClickLeft() {
      this.$router.go(-1);
    },
    selectSymbol(coin, symbol) {
      this.$router.push({
        path: "/recharge/rechargePage",
        query: {
          coin: coin,
          symbol: symbol,
        },
      });
    },
    goRouter(params) {
      this.$router.push({
        path: params,
      });
    },
  },
};
</script>
<style lang="scss" scoped>
.recharge {
  width: 100%;
  box-sizing: border-box;
}
 
.recharge-title {
  margin: 86px 0 104px 0;
}
 
.recharge-list {
  flex-wrap: wrap;
  .item-view {
    margin: 0 20px;
    margin-bottom: 20px;
  }
}
.recharge-list > div {
  @include themify() {
    border: 2px solid themed("bg_dark");
  }
 
  border-radius: 15px;
  box-sizing: border-box;
}
</style>