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

77 lines
2.5 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-black1 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" style="width: 50%;border-right: 1px solid rgba(0, 0, 0, 0.1);box-sizing: border-box;" :class="tabIndex ==0?'text-orange':'text-black1'" @click="tabIndex = 0">佣金记录</view>
  14. <view class="lf-font-32" style="width: 50%;" :class="tabIndex ==1?'text-orange':'text-black1'" @click="tabIndex = 1">提取记录</view>
  15. </view>
  16. <block v-if="tabIndex == 0">
  17. <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">
  18. <view class="flex align-center text-center justify-between">
  19. <view class="lf-font-36 lf-color-price">-¥10.00</view>
  20. <view class="lf-font-32 text-black1">结余 ¥34.43</view>
  21. </view>
  22. <view class="flex align-center text-center justify-between lf-m-t-10">
  23. <view class="lf-font-24 lf-color-999">内部粉丝购买商品获得</view>
  24. <view class="lf-font-24 lf-color-999">2021-7-6 22:32:43</view>
  25. </view>
  26. </view>
  27. </block>
  28. <block v-else>
  29. <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">
  30. <view class="flex align-center text-center justify-between">
  31. <view class="lf-font-36 lf-color-price">-¥11.00</view>
  32. <view class="lf-font-28 text-orange">申请中</view>
  33. </view>
  34. <view class="flex align-center text-center justify-between lf-m-t-10">
  35. <view class="lf-font-24 lf-color-999">流水号 638763485895875</view>
  36. <view class="lf-font-24 lf-color-999">2021-7-6 22:32:43</view>
  37. </view>
  38. </view>
  39. </block>
  40. </view>
  41. </template>
  42. <script>
  43. export default {
  44. data() {
  45. return {
  46. tabIndex: 0
  47. }
  48. }
  49. }
  50. </script>
  51. <style scoped>
  52. .wallet-top {
  53. height: 404rpx;
  54. width: 100%;
  55. padding: 28rpx 32rpx;
  56. background-color: #FE9903;
  57. }
  58. .wallet-wraptop {
  59. width: 100%;
  60. height: 100%;
  61. border-radius: 10rpx;
  62. padding: 46rpx 0 44rpx 0;
  63. }
  64. .btn{
  65. margin: 0;
  66. padding: 0;
  67. width: 320rpx;
  68. height: 84rpx;
  69. background-color: #FE9903;
  70. color: #FFFFFF;
  71. line-height: 84rpx;
  72. font-size: 32rpx;
  73. border-radius: 42rpx;
  74. }
  75. </style>