1
李凌
2026-01-21 e01cee0f0c5c5c2eb2d8595eadb3c7a9df2a37fc
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
<template>
  <div class="w-full h-full">
    <order-nav :title="$t('申述提交')" :back="false" @back="hide" />
    <div class="mt-70">
      <div class="text-center">
        <img class="w-122 h-122" style="margin: 0 auto;" src="@/assets/image/c2c/Group100.png" alt="">
        <div class="mt-35 font-700 font-56 textColor">{{ $t('提交成功') }}</div>
        <div class="mt-10 font-28 text-grey">
          <p class="mb-15">{{ $t('您的资料已成功上传!') }}</p>
          <p>{{ $t('系统将在三个工作日内审核完毕,请您耐心等候。') }}</p>
        </div>
      </div>
    </div>
    <div class="px-33 mt-92">
      <van-button color="#1D91FF" class="w-full h-100 rounded-xl" type="info" @click="tokefu">{{ $t('联系客服') }}
      </van-button>
      <div @click="hide" class="mt-34 font-36 text-center" style="color: #1D91FF">{{ $t('返回') }}</div>
    </div>
  </div>
</template>
 
<script>
import { Button } from "vant";
import OrderNav from "@/components/order-nav/OrderNav.vue";
import { customerServiceUrl } from "@/config";
export default {
  name: "AppealWaiting",
  components: {
    [Button.name]: Button,
    OrderNav,
  },
  methods: {
    tokefu() {
      if (customerServiceUrl()) {
        window.location.href = customerServiceUrl();
      } else {
        this.$router.push('/customerService')
      }
    },
    hide() {
      console.log(213)
      this.$emit("back");
    }
  }
}
</script>
 
<style scoped></style>