Files

32 lines
749 B
Vue
Raw Normal View History

2020-03-15 13:59:43 +08:00
<template>
<view class="cash-audit">
<view class="pictrue">
2020-04-07 19:30:41 +08:00
<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>
2020-03-15 13:59:43 +08:00
</template>
<script>
export default {
name: "CashAudit",
components: {},
props: {},
data: function() {
return {
time: ""
};
},
mounted: function() {
let myData = new Date();
this.time = myData.toLocaleString();
},
2020-03-16 01:40:52 +08:00
methods: {
goUserPromotion() {
this.$yrouter.push({ path: "/pages/user/promotion/UserPromotion/index" });
}
}
2020-03-15 13:59:43 +08:00
};
</script>