1
PC-20250623MANY\Administrator
2025-07-22 9ec3bd6e8d7357927533d8966f882cb5d28b3e0f
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
<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 "@/API/otc";
 
import CN from "@/page/placeAnOrder/components/bankCardDetail/CN";
import EN from "@/page/placeAnOrder/components/bankCardDetail/EN";
export default {
  name: "index",
  props: ['type', 'configType', 'id'],
  data() {
    return {
      paymentMethodConfig: '',
    }
  },
  async created() {
    // const res = await otcApi.ctcPaymentMethodConfig({ language: this.$i18n.locale });
    // this.paymentMethodConfig = res.data;
  },
  components: {
    CN,
    EN,
  }
}
</script>
 
<style scoped>
 
</style>