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

88 lines
1.6 KiB

5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 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>{{ total }}</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;">
  22. {{ vipType[item.isPay] }}
  23. </text>
  24. </template>
  25. </uv-cell>
  26. </uv-cell-group>
  27. </view>
  28. </view>
  29. </view>
  30. </template>
  31. <script>
  32. import mixinsList from '@/mixins/list.js'
  33. export default {
  34. mixins : [mixinsList],
  35. data() {
  36. return {
  37. mixinsListApi : 'getFansPageList',
  38. vipType : ['普通会员', '黄金会员', '渠道商'],
  39. }
  40. },
  41. onLoad(e) {},
  42. methods: {
  43. }
  44. }
  45. </script>
  46. <style lang="scss" scoped>
  47. .page {
  48. background-color: #F3F3F3;
  49. height: 100vh;
  50. .top {
  51. display: flex;
  52. height: 400rpx;
  53. justify-content: center;
  54. align-items: center;
  55. color: #474747;
  56. .top-text {
  57. text-align: center;
  58. view:nth-child(1) {
  59. font-size: 78rpx;
  60. font-weight: 600;
  61. }
  62. view:nth-child(2) {
  63. font-size: 28rpx;
  64. }
  65. }
  66. }
  67. .cell {
  68. margin: 20rpx;
  69. background-color: #FFFFFF;
  70. border-radius: 16rpx;
  71. .cell-top {
  72. padding: 40rpx 34rpx;
  73. color: #474747;
  74. font-size: 34rpx;
  75. font-weight: 600;
  76. }
  77. }
  78. }
  79. </style>