<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>
|