详情小程序
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.

95 lines
1.8 KiB

  1. <template>
  2. <view>
  3. <view class="lf-color-222 lf-font-32 authen-title lf-p-l-20 lf-m-l-30">联系过的人</view>
  4. <view class="content">
  5. <view class="card" v-for="item in 7" :key="item">
  6. <lf-image class="cover" src="../../static/logo.png"></lf-image>
  7. <view class="label">
  8. <view class="lf-line-1">嘉宾xxx <text class="lf-iconfont icon-nan lf-m-l-10 lf-color-blue"></text></view>
  9. <view class="lf-line-1">25··180cm·本科·未婚</view>
  10. </view>
  11. </view>
  12. </view>
  13. <!-- 加载更多 -->
  14. <view class="loading-more">
  15. <text>没有更多数据啦~</text>
  16. </view>
  17. <!-- 回到顶部 -->
  18. <u-back-top :scrollTop="pageScrollTop"></u-back-top>
  19. </view>
  20. </template>
  21. <script>
  22. export default {
  23. data(){
  24. return {
  25. }
  26. },
  27. onLoad(){
  28. },
  29. methods: {
  30. }
  31. }
  32. </script>
  33. <style lang="scss" scoped="scoped">
  34. .authen-title {
  35. position: relative;
  36. font-size: 32rpx;
  37. color: #131315;
  38. font-weight: 500;
  39. }
  40. .authen-title::after {
  41. content: '';
  42. position: absolute;
  43. left: 0;
  44. top: 8rpx;
  45. width: 8rpx;
  46. height: 30rpx;
  47. background: #E21196;
  48. border-radius: 4rpx;
  49. }
  50. .content{
  51. display: flex;
  52. flex-wrap: wrap;
  53. padding: 44rpx 32rpx;
  54. }
  55. .card{
  56. width: 334rpx;
  57. height: 360rpx;
  58. border-radius: 10rpx;
  59. position: relative;
  60. overflow: hidden;
  61. margin-right: 18rpx;
  62. margin-bottom: 18rpx;
  63. &:nth-child(2n){
  64. margin-right: 0rpx;
  65. }
  66. .cover{
  67. width: 100%;
  68. height: 100%;
  69. background-color: #EEEEEE;
  70. position: absolute;
  71. top: 0;
  72. left: 0;
  73. }
  74. .label{
  75. position: absolute;
  76. bottom: 0;
  77. left: 0;
  78. width: 100%;
  79. height: 98rpx;
  80. color: #FFFFFF;
  81. background: rgba(0, 0, 0, 0.5);
  82. display: flex;
  83. justify-content: center;
  84. padding: 0 20rpx;
  85. flex-wrap: nowrap;
  86. flex-direction: column;
  87. font-size: 28rpx;
  88. }
  89. }
  90. </style>