江西小程序管理端
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.

60 lines
1.2 KiB

  1. <template>
  2. <view class="pageBgImg">
  3. <view class="status_bar"></view>
  4. <view class="navH"></view>
  5. <view class="pad">
  6. <view class="searchBox">
  7. <searchRow placeholder="搜索学员姓名"></searchRow>
  8. </view>
  9. <view class="tabs">
  10. <view class="tab active">全部10</view>
  11. <view class="tab">匿名1</view>
  12. <view class="tab">有图2</view>
  13. <view class="tab">有视频6</view>
  14. </view>
  15. <view class="list">
  16. <view class="card">
  17. <commentItem/>
  18. </view>
  19. </view>
  20. </view>
  21. <UserTab name ='学员评价'></UserTab>
  22. </view>
  23. </template>
  24. <script>
  25. </script>
  26. <style lang="scss" scoped>
  27. .navH {
  28. width: 100%;
  29. height: 90rpx;
  30. }
  31. .card {
  32. padding: 28rpx;
  33. margin-bottom: 20rpx;
  34. }
  35. .tabs {
  36. display: flex;
  37. justify-content: space-between;
  38. padding: 24rpx 12rpx;
  39. .tab {
  40. line-height: 76rpx;
  41. font-size: 28rpx;
  42. color: #fff;
  43. &.active {
  44. position: relative;
  45. &::before {
  46. position: absolute;
  47. content: '';
  48. left: 50%;
  49. bottom: 0;
  50. transform: translateX(-50%);
  51. width: 56rpx;
  52. height: 6rpx;
  53. background: #FFFFFF;
  54. border-radius: 3rpx;
  55. }
  56. }
  57. }
  58. }
  59. </style>