<template>
|
<!-- 充值或提现申请提交页面 -->
|
<div>
|
<assets-head title="" :goHome="true" />
|
<div class="pl-47 pr-47 page-box relative">
|
<div class="content-box">
|
<div class="flex flex-col items-center justify-center mt96">
|
<van-image
|
width="162"
|
height="142"
|
:src="require('../../assets/image/assets-center/success.png')"
|
/>
|
<div class="font-45 font-700 success-title textColor">
|
{{ title }} {{ $t("申请已提交") }}
|
</div>
|
</div>
|
<div class="mb87">
|
<div class="font-35 textColor">
|
{{ title }} {{ $t("申请已提交") }}
|
</div>
|
<div class="text-grey font-30 mt14">{{ time }}</div>
|
</div>
|
<div class="mb87">
|
<div class="font-35 textColor">
|
{{ title }} {{ $t("申请已提交") }}
|
</div>
|
<div class="flex mt14">
|
<div v-if="title == 'チャージ'" class="text-grey font-30">
|
入金が反映されていない場合は?
|
</div>
|
<div v-else class="text-grey font-30">
|
{{ $t("如果") }} {{ title }} {{ $t("未到账") }}?
|
</div>
|
|
<div class="service-text font-30 text-blue" @click="tokefu">
|
{{ $t("联系客服") }}
|
</div>
|
</div>
|
</div>
|
<!-- <div class="mb87">-->
|
<!-- <div class="font-35">{{ title }} {{ $t('已成功') }}</div>-->
|
<!-- <div class="text-grey font-30 mt14">{{ $t('您会收到邮箱提醒') }}</div>-->
|
<!-- </div>-->
|
</div>
|
<div class="btn-wrap">
|
<button
|
class="btnMain text-white next-btn font-35"
|
@click="goRouter('/assetsCenter/rechargeWithdrawRecord')"
|
>
|
{{ $t("查看") }} {{ title }} {{ $t("历史") }}
|
</button>
|
</div>
|
</div>
|
</div>
|
</template>
|
|
<script>
|
import { Image as VanImage } from "vant";
|
import assetsHead from "@/components/assets-head";
|
import { dataTimeEx } from "@/utils/utis";
|
export default {
|
name: "rechargeSubmit",
|
components: {
|
assetsHead,
|
[VanImage.name]: VanImage,
|
},
|
props: {
|
title: {
|
type: String,
|
default: "",
|
},
|
},
|
data() {
|
return {
|
time: "",
|
};
|
},
|
created() {
|
this.getTime();
|
},
|
methods: {
|
onClickLeft() {
|
this.$router.go(-1);
|
},
|
goRouter(params) {
|
this.$router.push({
|
path: params,
|
});
|
},
|
getTime() {
|
this.time = dataTimeEx(Date.parse(new Date()), true);
|
},
|
tokefu() {
|
this.$router.push("/customerService");
|
},
|
},
|
};
|
</script>
|
<style lang="scss" scoped>
|
.page-box {
|
box-sizing: border-box;
|
}
|
.btn-wrap {
|
position: fixed;
|
left: 0;
|
bottom: 86px;
|
width: 100%;
|
padding: 0 30px;
|
box-sizing: border-box;
|
}
|
.mt96 {
|
margin-top: 114px;
|
}
|
.success-title {
|
margin-top: 70px;
|
margin-bottom: 115px;
|
}
|
|
.mt14 {
|
margin-top: 14px;
|
}
|
|
.mb87 {
|
margin-bottom: 87px;
|
}
|
|
.service-text {
|
text-decoration: underline;
|
}
|
.next-btn {
|
width: 100%;
|
height: 96px;
|
border: none;
|
outline: none;
|
border-radius: 8px;
|
}
|
</style>
|