10.10综合交易所原始源码_移动端
1
admin
2026-02-10 c547081aa61be5c7b6d4c12853c675954c2156eb
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
<template>
  <div class="w-full h-full box-border">
    <!--  <e-n :data="data" v-if="type === 'EN'"/>-->
    <c-n :id="id" :configType="configType" />
  </div>
</template>
 
<script>
import otcApi from "@/service/otc.api";
 
import CN from "@/views/cryptos/placeAnOrder/components/bankCardDetail/CN.vue";
export default {
  name: "c2cBankCardDetail",
  data() {
    return {
      paymentMethodConfig: '',
      configType: '',
      type: '',
      id: ''
    }
  },
  created() {
    // const res = await otcApi.ctcPaymentMethodConfig({ language: this.$i18n.locale });
    // this.paymentMethodConfig = res.data;
    if (this.$route.query.type) {
      this.type = this.$route.query.type
    }
    if (this.$route.query.configType) {
      this.configType = this.$route.query.configType
    }
    if (this.$route.query.id) {
      this.id = this.$route.query.id
    }
  },
  components: {
    CN,
  }
}
</script>
 
<style scoped></style>