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
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
<template>
  <div id="QuestionPage">
    <div class="w-full h-full c2cPay-page">
      <order-nav :back="false" @back="hide" />
      <div class="text-center">
        <div class="text-48 ">{{ $t('付款遇到问题?') }}</div>
        <!-- <div class="flex justify-center items-center mt-18 text-28">
        <span class="mr-6">{{ $t('付款剩余时间')}}</span>
        <van-count-down class="flex font-bold" :time="time">
          <template #default="timeData">
            <span class="text-26 block" v-if="timeData.hours">{{ timeData.hours }}</span>
            <span class="text-26 colon" v-if="timeData.hours">:</span>
            <span class="text-26 block">{{ timeData.minutes }}</span>
            <span class="text-26 colon">:</span>
            <span class="text-26 block">{{ timeData.seconds }}</span>
          </template>
        </van-count-down>
      </div> -->
      </div>
      <div class="px-8 text-32 mt-4">
        <div class="mt-24">
          <p class="text-grey">Q:{{ $t('不知道如何付款?') }}</p>
          <p class="mt-7 text-grey">A:{{ $t('为保障交易安全,部分卖家可能先需要您提供额外资料来证明您的身份,资金来源等真是可信。请与卖家聊天沟通获取交易方式。') }}</p>
        </div>
        <div class="mt-20">
          <p class="text-grey">Q:{{ $t('向卖家提供的收款方式付款,但支付失败了') }}</p>
          <p class="mt-7 text-grey">A:{{ $t('请联系卖家确认卖家是否支持其他交易方式。') }}</p>
        </div>
        <div class="mt-20">
          <p class="text-grey">Q:{{ $t('我不想交易了?') }}</p>
          <p class="mt-7 text-grey">A:{{ $t('您可以点击取消订单按钮取消该笔订单。') }}</p>
        </div>
      </div>
      <div class="mt-96 px-8">
        <van-button class="w-full h-20  mr-4 text-32 rounded-xl text-white bg-blue border-none" type="primary"
          @click="$router.push('/cryptos/chat')">{{ $t('联系卖家') }}
        </van-button>
        <van-button class="w-full h-20 text-32 rounded-xl bg-grey text-black border-none cancelBtn" type="primary"
          @click="$router.push({ path: '/cryptos/cancelOrder' })">{{ $t('取消订单') }}
        </van-button>
      </div>
    </div>
  </div>
</template>
 
<script>
import { Button, CountDown } from "vant"
import OrderNav from "@/components/Transform/order-nav/OrderNav.vue";
 
export default {
  name: "Question",
  props: ["time"],
  methods: {
    hide() {
      console.log(123)
      this.$emit('back')
    }
  },
  components: {
    [CountDown.name]: CountDown,
    [Button.name]: Button,
    OrderNav,
  }
}
</script>
 
<style lang="scss"  scoped>
#QuestionPage {
  font-size: 30px;
 
  .c2cPay-page {
    color: #fff;
  }
 
  .cancelBtn {
    margin-top: 30px;
  }
}
</style>