Files
2020-04-07 19:30:41 +08:00

32 lines
749 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<view class="cash-audit">
<view class="pictrue">
<image src="@/static/images/examine.png" />
</view>
<view class="tip">提现申请已提交等待人工审核</view>
<view class="time">{{ time }}</view>
<view class="bnt bg-color-red" @click="goUserPromotion()">好的</view>
</view>
</template>
<script>
export default {
name: "CashAudit",
components: {},
props: {},
data: function() {
return {
time: ""
};
},
mounted: function() {
let myData = new Date();
this.time = myData.toLocaleString();
},
methods: {
goUserPromotion() {
this.$yrouter.push({ path: "/pages/user/promotion/UserPromotion/index" });
}
}
};
</script>