小程序端工程代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
738 B

  1. <template>
  2. <view class="cash-audit">
  3. <view class="pictrue">
  4. <image :src="`${$VUE_APP_RESOURCES_URL}/images/examine.png`" />
  5. </view>
  6. <view class="tip">提现申请已提交等待人工审核</view>
  7. <view class="time">{{ time }}</view>
  8. <view class="bnt bg-color-red" @click="goUserPromotion()">好的</view>
  9. </view>
  10. </template>
  11. <script>
  12. export default {
  13. name: "CashAudit",
  14. components: {},
  15. props: {},
  16. data: function() {
  17. return {
  18. time: ""
  19. };
  20. },
  21. mounted: function() {
  22. let myData = new Date();
  23. this.time = myData.toLocaleString();
  24. },
  25. methods: {
  26. goUserPromotion() {
  27. this.$yrouter.push({ path: "/pages/user/promotion/UserPromotion/index" });
  28. }
  29. }
  30. };
  31. </script>