10.10综合交易所原始源码_移动端
admin
2026-01-06 04d8c6bfd48267c7b2eaccaa03170618d83e4cbd
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
<template>
  <div id="TradeSuccessPage">
    <div class="w-full h-full">
      <order-nav :back="false" @back="$router.push('/cryptos/wantBuy')" />
      <div class="mt-10">
        <div class="flex justify-center">
          <img class="w-32 h-32" src="~@/assets/image/c2c/Group100.png" alt="">
        </div>
        <div class="flex justify-center flex-col items-center mt-11 font-bold text-50">
          <div>
            <slot name="price"></slot>
          </div>
        </div>
      </div>
      <div class="flex flex-col items-center mt-44">
        <div>
          <van-button class="w-160 h-20 rounded-lg bg-blue" type="info"
            @click="$router.push('/cryptos/tradeSuccessDetailBuyer')">{{
              $t('完成') }}</van-button>
        </div>
        <div class="mt-11 text-32 font-normal text-blue " @click="$router.push('/cryptos/funds')">{{ $t('查看资产') }}</div>
      </div>
      <!--  <div class="absolute bottom-0 left-0 w-full text-center">-->
      <!--    <van-divider />-->
      <!--    <evaluation class="pb-80">-->
      <!--      <template #desc>-->
      <!--        <slot name="desc"></slot>-->
      <!--      </template>-->
      <!--    </evaluation>-->
      <!--  </div>-->
    </div>
  </div>
</template>
 
<script>
import {
  Button,
  Divider,
} from "vant";
import OrderNav from "@/components/Transform/order-nav/OrderNav.vue";
import Evaluation from "@/views/cryptos/c2cOrder/payment/components/Evaluation.vue";
export default {
  name: "TradeSuccess",
  components: {
    [Button.name]: Button,
    [Divider.name]: Divider,
    OrderNav,
    Evaluation,
  }
}
</script>
 
<style lang="scss" scoped></style>