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

78 lines
1.3 KiB

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>100</view>
  7. <view>直推人数()</view>
  8. </view>
  9. </view>
  10. <view class="cell">
  11. <view class="cell-top">推广明细</view>
  12. <view class="cell-box" v-for="(item,index) in 10">
  13. <uv-cell-group>
  14. <uv-cell title="直推:张三" label="2024-11-12 12:56:48" :center="true">
  15. <template #value>
  16. <text style="font-weight: 600; font-size: 28rpx;">黄金会员</text>
  17. </template>
  18. </uv-cell>
  19. </uv-cell-group>
  20. </view>
  21. </view>
  22. </view>
  23. </template>
  24. <script>
  25. export default {
  26. data() {
  27. return {
  28. }
  29. },
  30. onLoad(e) {},
  31. methods: {
  32. }
  33. }
  34. </script>
  35. <style lang="scss" scoped>
  36. .page {
  37. background-color: #F3F3F3;
  38. height: 100vh;
  39. .top {
  40. display: flex;
  41. height: 400rpx;
  42. justify-content: center;
  43. align-items: center;
  44. color: #474747;
  45. .top-text {
  46. text-align: center;
  47. view:nth-child(1) {
  48. font-size: 78rpx;
  49. font-weight: 600;
  50. }
  51. view:nth-child(2) {
  52. font-size: 28rpx;
  53. }
  54. }
  55. }
  56. .cell {
  57. margin: 20rpx;
  58. background-color: #FFFFFF;
  59. border-radius: 16rpx;
  60. .cell-top {
  61. padding: 40rpx 34rpx;
  62. color: #474747;
  63. font-size: 34rpx;
  64. font-weight: 600;
  65. }
  66. }
  67. }
  68. </style>