withdrawalDetail.vue 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. <template>
  2. <view style="background: #FFFFFF;height: 100%;">
  3. <!-- 公共组件-每个页面必须引入 -->
  4. <public-module></public-module>
  5. <view class="headers " :style="headerStyle">
  6. <view class="dis a-c j-start " style="padding: 0 15px;">
  7. <u-icon name="arrow-left" size="40" @tap="back"></u-icon>
  8. <text style="margin: auto;">提现详情</text>
  9. </view>
  10. </view>
  11. <view style="padding:95px 16px 16px">
  12. <view class="assets" >
  13. <image v-if="MoneyData.status=='0'" src="/static/icon/Subtract.png" mode=""></image>
  14. <image v-if="MoneyData.status=='1'" src="/static/icon/Vector.png" mode=""></image>
  15. <image v-if="MoneyData.status=='2'" src="/static/icon/Vector (1).png" mode=""></image>
  16. <view style="font-size: 16px;">{{MoneyData.status=='0'?'提现中':MoneyData.status=='1'?'已提现':'提现失败'}}</view>
  17. <view style="font-size: 31px;font-weight: bold;margin-top:5px">{{MoneyData.cashFee}}</view>
  18. <text>提现到{{MoneyData.bankAccount}}</text>
  19. <view style="padding: 5px;background: #F9F9F9;font-size: 14px; text-align: left;
  20. color: #666666;border-radius: 3px 3px 3px 3px;margin-top: 15px;">
  21. {{MoneyData.remark}}
  22. </view>
  23. </view>
  24. <view class="assets1 dis f-c j-s">
  25. <view class="dis j-s a-c" style="border-top: 1px solid #f2f2f2;" v-if="MoneyData.number">
  26. <text>交易编号:</text>
  27. <text>{{MoneyData.number}}</text>
  28. </view>
  29. <!-- <view class="dis j-s a-c" v-if="MoneyData.remark && numList.length==2 && numList[1].processingStatusName=='2'">
  30. <text>驳回原因:</text>
  31. <text>{{MoneyData.remark}}</text>
  32. </view> -->
  33. <view class="dis j-s a-c" v-if="MoneyData.createTime">
  34. <text>申请时间:</text>
  35. <text>{{MoneyData.createTime}}</text>
  36. </view>
  37. <view class="dis j-s a-c" v-if="MoneyData.auditTime && MoneyData.status=='1'">
  38. <text>到账时间:</text>
  39. <text>{{MoneyData.auditTime}}</text>
  40. </view>
  41. <view class="dis j-s a-c" v-if="MoneyData.bankNumber">
  42. <text>到账账户:</text>
  43. <text>{{MoneyData.bankNumber}}</text>
  44. </view>
  45. <view class="dis j-s a-c" v-if="MoneyData.bankAccount">
  46. <text>到账银行:</text>
  47. <text>{{MoneyData.bankAccount}}</text>
  48. </view>
  49. </view>
  50. </view>
  51. </view>
  52. </template>
  53. <script>
  54. import {
  55. mapState
  56. } from "vuex"
  57. export default {
  58. data() {
  59. return {
  60. numList: [],
  61. MoneyData: {},
  62. promotionData: {},
  63. refundData: {},
  64. trajectoryLength: 0,
  65. headerStyle: {
  66. backgroundColor: 'transparent',
  67. backgroundImage: 'url("/static/beijing (2).png")',
  68. backgroundSize: 'cover',
  69. backgroundPosition: '',
  70. boxShadow: ''
  71. // 其他样式属性...
  72. },
  73. }
  74. },
  75. computed: {
  76. ...mapState(['userInfo'])
  77. },
  78. onShow() {
  79. },
  80. async onLoad(e) {
  81. this.MoneyData = JSON.parse(decodeURIComponent(e.key));
  82. },
  83. onShow() {},
  84. methods: {
  85. back() {
  86. uni.navigateBack({
  87. delta: 1, // 返回的页面数,如果是1表示返回上一页
  88. success: function() {}
  89. });
  90. },
  91. }
  92. }
  93. </script>
  94. <style lang="scss" scoped>
  95. .flexd {
  96. position: fixed;
  97. left: 0;
  98. right: 0;
  99. }
  100. .assets1 {
  101. width: 100%;
  102. height: auto;
  103. margin-top: 30px;
  104. >view {
  105. border-bottom: 1px solid #f2f2f2;
  106. font-size: 16px;
  107. color: #333333;
  108. padding: 10px;
  109. }
  110. }
  111. .assets {
  112. color: #333333;
  113. text-align: center;
  114. font-size: 16px;
  115. text{
  116. font-size: 13px;
  117. color: #666666;
  118. }
  119. image{
  120. display: inline-block;
  121. width:52px;
  122. height:52px
  123. }
  124. }
  125. .headers {
  126. position: fixed;
  127. top: 0;
  128. left: 0;
  129. width: 100%;
  130. z-index: 999999;
  131. padding-top: 40px;
  132. height: 85px;
  133. text {
  134. font-size: 18px;
  135. font-weight: bold;
  136. }
  137. }
  138. </style>