dcc
2024-06-13 24e2c4a6983d3ed1c67080b460f7e28f5e2e55f9
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
<template>
  <div id="cryptos">
    <div class="w-full h-full">
      <order-nav :back="false" @back="hide">
        <template #title>
          {{ $t('申述提交') }}
        </template>
      </order-nav>
      <div class="mt-70">
        <div class="text-center">
          <img class="w-122 h-122" src="~@/assets/image/c2c/Group100.png" alt="">
          <div class="mt-35 font-bold text-50 textColor">{{ $t('申诉成功') }}</div>
          <div class="mt-24 text-28 text-grey">
            <p class="mb-15 font-semibold">100 USDT</p>
            <p>{{ $t('已返还至您的账户') }}</p>
          </div>
        </div>
      </div>
      <div class="px-33 mt-92">
        <order-data :count="count" :total-price="totalPrice" :order-number="orderNumber" />
      </div>
    </div>
  </div>
</template>
 
<script>
import {
  mapState
} from "vuex";
 
import { Button } from "vant";
import OrderNav from "@/components/Transform/order-nav/OrderNav.vue";
import OrderData from "@/views/cryptos/c2cOrder/components/order-data/OrderData.vue";
 
export default {
  name: "AppealWaiting",
  methods: {
    hide() {
      console.log(213)
      this.$emit("back");
    }
  },
  computed: {
    ...mapState('c2cBuy', ["count", "totalPrice", "orderNumber"])
  },
  components: {
    [Button.name]: Button,
    OrderNav,
    OrderData,
  }
}
</script>
 
<style scoped></style>