Init project

This commit is contained in:
lifizer
2023-09-20 21:49:33 +08:00
parent 85a5989c96
commit c9ceac9f37
710 changed files with 125705 additions and 0 deletions
+33
View File
@@ -0,0 +1,33 @@
<template>
<view class="cash-audit">
<view class="pictrue">
<image :src="`${staticUrl}/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 {
staticUrl:this.$STATIC_RESOURCE_URL,
time: ""
};
},
mounted: function() {
let myData = new Date();
this.time = myData.toLocaleString();
},
methods: {
goUserPromotion() {
this.$yrouter.back();
// this.$yrouter.push({ path: "/pages/user/promotion/UserPromotion/index" });
}
}
};
</script>