Files

32 lines
755 B
Vue
Raw Normal View History

2020-03-15 13:59:43 +08:00
<template>
<div class="cash-audit">
2020-03-16 01:40:52 +08:00
<div class="pictrue">
<img :src="$VUE_APP_RESOURCES_URL+'/images/examine.png'" />
</div>
2020-03-15 13:59:43 +08:00
<div class="tip">提现申请已提交等待人工审核</div>
<div class="time">{{ time }}</div>
2020-03-16 01:40:52 +08:00
<div class="bnt bg-color-red" @click="goUserPromotion()">好的</div>
2020-03-15 13:59:43 +08:00
</div>
</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>