青蛙卖大米小程序2024-11-24
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.

85 lines
1.5 KiB

6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
  1. <template>
  2. <view class="page">
  3. <navbar title="推广明细" leftClick @leftClick="$utils.navigateBack" />
  4. <view class="top">
  5. <view class="top-text">
  6. <view>100</view>
  7. <view>直推人数()</view>
  8. </view>
  9. </view>
  10. <view class="cell">
  11. <view class="cell-top">推广明细</view>
  12. <view class="cell-box"
  13. :key="index"
  14. v-for="(item,index) in list">
  15. <uv-cell-group>
  16. <uv-cell
  17. :title="item.nickName"
  18. :label="item.createTime"
  19. :center="true">
  20. <template #value>
  21. <text style="font-weight: 600; font-size: 28rpx;">黄金会员</text>
  22. </template>
  23. </uv-cell>
  24. </uv-cell-group>
  25. </view>
  26. </view>
  27. </view>
  28. </template>
  29. <script>
  30. import mixinsList from '@/mixins/list.js'
  31. export default {
  32. mixins : [mixinsList],
  33. data() {
  34. return {
  35. mixinsListApi : 'getFansPageList',
  36. }
  37. },
  38. onLoad(e) {},
  39. methods: {
  40. }
  41. }
  42. </script>
  43. <style lang="scss" scoped>
  44. .page {
  45. background-color: #F3F3F3;
  46. height: 100vh;
  47. .top {
  48. display: flex;
  49. height: 400rpx;
  50. justify-content: center;
  51. align-items: center;
  52. color: #474747;
  53. .top-text {
  54. text-align: center;
  55. view:nth-child(1) {
  56. font-size: 78rpx;
  57. font-weight: 600;
  58. }
  59. view:nth-child(2) {
  60. font-size: 28rpx;
  61. }
  62. }
  63. }
  64. .cell {
  65. margin: 20rpx;
  66. background-color: #FFFFFF;
  67. border-radius: 16rpx;
  68. .cell-top {
  69. padding: 40rpx 34rpx;
  70. color: #474747;
  71. font-size: 34rpx;
  72. font-weight: 600;
  73. }
  74. }
  75. }
  76. </style>