帧视界壹通告,付费看视频的微信小程序
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.

80 lines
1.5 KiB

11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
  1. <template>
  2. <view class="incomeRecord">
  3. <!--顶部导航栏-->
  4. <navbar leftClick @leftClick="$utils.navigateBack" title="收益记录"/>
  5. <!--内容区域-->
  6. <view class="content">
  7. <view class="title">收益记录</view>
  8. <view class="list">
  9. <view class="item" v-for="(item,index) in 20" :key="index">
  10. <view class="left">
  11. <image src="/static/image/incomeRecord/1.png" style="width: 70%;height: 70%;"></image>
  12. </view>
  13. <view class="center">
  14. <view>小李</view>
  15. <view>2024.02.02</view>
  16. </view>
  17. <view class="right">
  18. <view>收益金额</view>
  19. <view>¥10000</view>
  20. </view>
  21. </view>
  22. </view>
  23. </view>
  24. </view>
  25. </template>
  26. <script>
  27. export default {
  28. data() {
  29. return {};
  30. }
  31. }
  32. </script>
  33. <style lang="scss" scoped>
  34. .incomeRecord {
  35. .content {
  36. padding: 0 40rpx;
  37. height: calc(100vh - 240rpx);
  38. .title {
  39. font-weight: bold;
  40. margin-top: 5%;
  41. }
  42. .list {
  43. padding-top: 50rpx;
  44. .item {
  45. display: flex;
  46. gap: 20rpx;
  47. //height: 80rpx;
  48. margin-bottom: 40rpx;
  49. .left {
  50. display: flex;
  51. justify-content: center;
  52. align-items: flex-start;
  53. width: 15%;
  54. }
  55. .center {
  56. width: 60%;
  57. }
  58. .right {
  59. width: 30%;
  60. text-align: center;
  61. }
  62. }
  63. }
  64. }
  65. }
  66. </style>