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

88 lines
1.5 KiB

11 months ago
6 months ago
11 months ago
6 months ago
11 months ago
6 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 list" :key="index">
  10. <view class="left">
  11. <image src="../static/incomeRecord/1.png" style="width: 70%;height: 70%;"></image>
  12. </view>
  13. <view class="center">
  14. <view>{{ item.userId }}</view>
  15. <view>{{ item.createTime }}</view>
  16. </view>
  17. <view class="right">
  18. <view>收益金额</view>
  19. <view>{{item.price}}</view>
  20. </view>
  21. </view>
  22. </view>
  23. </view>
  24. </view>
  25. </template>
  26. <script>
  27. import mixinsList from '@/mixins/list.js'
  28. export default {
  29. mixins: [mixinsList],
  30. data() {
  31. return {
  32. mixinsListApi : 'infoGetIncomePage',
  33. };
  34. },
  35. mounted() {
  36. this.getData()
  37. },
  38. methods: {
  39. }
  40. }
  41. </script>
  42. <style lang="scss" scoped>
  43. .incomeRecord {
  44. .content {
  45. padding: 0 40rpx;
  46. .title {
  47. font-weight: bold;
  48. margin-top: 5%;
  49. }
  50. .list {
  51. padding-top: 50rpx;
  52. .item {
  53. display: flex;
  54. gap: 20rpx;
  55. //height: 80rpx;
  56. margin-bottom: 40rpx;
  57. .left {
  58. display: flex;
  59. justify-content: center;
  60. align-items: flex-start;
  61. width: 15%;
  62. }
  63. .center {
  64. width: 60%;
  65. }
  66. .right {
  67. width: 30%;
  68. text-align: center;
  69. }
  70. }
  71. }
  72. }
  73. }
  74. </style>