时空网前端
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.

72 lines
2.1 KiB

  1. <template>
  2. <view>
  3. <view class="wallet-top">
  4. <view class="bg-white wallet-wraptop flex-direction flex justify-around align-center text-center">
  5. <view class="text-black text-price1" style="font-size: 72rpx;">2000.48</view>
  6. <view class="text-gray lf-font-24 lf-m-b-20">佣金</view>
  7. <view>
  8. <button class="btn" @click="$url('/pages/center/widthdraw')">提取佣金</button>
  9. </view>
  10. </view>
  11. </view>
  12. <view class="bg-white lf-p-t-40 lf-p-b-40 flex justify-around align-center text-center solid-bottom">
  13. <view class="lf-font-32" :class="tabIndex ==0?'text-orange':'text-black'" @click="tabIndex = 0">佣金记录</view>
  14. <view class="lf-font-32" :class="tabIndex ==1?'text-orange':'text-black'" @click="tabIndex = 1">提取记录</view>
  15. </view>
  16. <block v-if="tabIndex == 0">
  17. <view class="flex justify-between lf-p-t-20 lf-p-b-20 lf-p-l-32 lf-p-r-32 solid-bottom align-center text-center">
  18. <view class="lf-font-36 lf-color-price">-¥10.00</view>
  19. <view class="lf-font-24 lf-color-999">2021-7-6 22:32:43</view>
  20. </view>
  21. </block>
  22. <block v-else>
  23. <view class="flex flex-direction justify-between lf-p-t-20 lf-p-b-20 lf-p-l-32 lf-p-r-32 solid-bottom">
  24. <view class="flex align-center text-center justify-between">
  25. <view class="lf-font-36 lf-color-price">-¥11.00</view>
  26. <view class="lf-font-28 text-orange">申请中</view>
  27. </view>
  28. <view class="flex align-center text-center justify-between lf-m-t-10">
  29. <view class="lf-font-24 lf-color-999">流水号 638763485895875</view>
  30. <view class="lf-font-24 lf-color-999">2021-7-6 22:32:43</view>
  31. </view>
  32. </view>
  33. </block>
  34. </view>
  35. </template>
  36. <script>
  37. export default {
  38. data() {
  39. return {
  40. tabIndex: 1
  41. }
  42. }
  43. }
  44. </script>
  45. <style scoped>
  46. .wallet-top {
  47. height: 404rpx;
  48. width: 100%;
  49. padding: 28rpx 32rpx;
  50. background-color: #FE9903;
  51. }
  52. .wallet-wraptop {
  53. width: 100%;
  54. height: 100%;
  55. border-radius: 10rpx;
  56. padding: 46rpx 0 44rpx 0;
  57. }
  58. .btn{
  59. margin: 0;
  60. padding: 0;
  61. width: 320rpx;
  62. height: 84rpx;
  63. background-color: #FE9903;
  64. color: #FFFFFF;
  65. line-height: 84rpx;
  66. font-size: 32rpx;
  67. border-radius: 42rpx;
  68. }
  69. </style>