status.vue 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <template>
  2. <view :style="colorStyle">
  3. <view class="px-20 mt-40">
  4. <view class="bg--w111-fff rd-24rpx flex-col flex-center box">
  5. <text class="iconfont icon-a-ic_CompleteSelect"></text>
  6. <view class="fs-32 lh-44rpx mt-64">提现申请已提交,等待人工审核</view>
  7. <view class="fs-26 lh-36rpx text--w111-999 mt-8">{{new Date().getTime() | dateFormat}}</view>
  8. <view class="w-498 h-88 rd-44rpx flex-center fs-28 text--w111-fff bg-color mt-30" @tap="goPage">好的</view>
  9. </view>
  10. </view>
  11. </view>
  12. </template>
  13. <script>
  14. import colors from '@/mixins/color.js';
  15. import dayjs from '@/plugin/dayjs/dayjs.min.js';
  16. export default {
  17. name: 'status',
  18. filters: {
  19. dateFormat(value) {
  20. return dayjs(value).format('YYYY/MM/DD hh:mm:ss');
  21. }
  22. },
  23. mixins:[colors],
  24. methods:{
  25. goPage(){
  26. uni.switchTab({
  27. url: '/pages/user/index'
  28. })
  29. }
  30. }
  31. }
  32. </script>
  33. <style scoped>
  34. .box{
  35. padding: 88rpx 0 64rpx;
  36. }
  37. .icon-a-ic_CompleteSelect{
  38. font-size: 112rpx;
  39. color: #00B42A;
  40. }
  41. </style>