cloudroam
2025-06-06 4d8420e51aa39dd4c8bb49ae98c05aaf2479fcb1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
<template>
    <view class="comment-item">
      <view class="comment-item-header">
        <view class="comment-item-header-left">
          <view class="avatar">
            <up-avatar :src="avatar" size="50rpx" shape="circle" />
          </view>
          <view class="comment-content">
            <view class="author">
              <text class="nickname">{{ nickname }}</text>
              <view v-if="isAuthor" class="author-flag">作者</view>
            </view>
            <view class="comment-content-text">
              <text>{{ content }}</text>
              <up-album :urls="images" multipleSize="180rpx" singleSize="500rpx" />
              <text class="date">{{ date }}</text>
              <text class="address">{{ address }}</text>
              <text class="reply" @click="onReply">回复</text>
            </view>
          </view>
          <view class="comment-opeartor">
            <up-icon name="heart" size="30rpx" />
            <view class="comment-opeartor-heart-number">{{ likes }}</view>
          </view>
        </view>
      </view>
  
      <!-- 子评论区域 -->
      <view class="sub-comment">
        <comment-sub-item
          avatar="https://img.yzcdn.cn/vant/cat.jpeg"
          nickname="图墙精选"
          :isAuthor="true"
          content="如果路线里全是常规景区,没一个特殊的点位..."
          :images="urls2"
          date="2天前"
          address="湖北"
          :likes="30"
          @reply="emitReply"
        />
      </view>
    </view>
  </template>
  
  <script setup lang="ts">
    import { ref, onMounted } from 'vue'
  interface Props {
    avatar: string
    nickname: string
    isAuthor: boolean
    content: string
    images: string[]
    date: string
    address: string
    likes: number
  }
  
  const props = defineProps<Props>()
  
  const emit = defineEmits<{
    (e: 'reply'): void
  }>()
  
  const urls2 = ref<string[]>([
    'https://img.yzcdn.cn/vant/cat.jpeg',
    'https://img.yzcdn.cn/vant/cat.jpeg',
    'https://img.yzcdn.cn/vant/cat.jpeg',
    'https://img.yzcdn.cn/vant/cat.jpeg',
    'https://img.yzcdn.cn/vant/cat.jpeg'
  ])
  
  const onReply = () => {
    emit('reply')
  }
  
  const emitReply = () => {
    emit('reply')
  }
  </script>
  
  <style lang="scss" scoped>
  .comment-item {
    .comment-item-header {
      display: flex;
      align-items: center;
  
      .comment-item-header-left {
        display: flex;
        width: 100%;
  
        .avatar {
          margin-right: 10rpx;
        }
  
        .comment-content {
          width: 92%;
          display: flex;
          flex-direction: column;
  
          .author {
            display: flex;
            align-items: center;
  
            .nickname {
              font-size: 30rpx;
              color: #858585;
            }
  
            .author-flag {
              font-size: 18rpx;
              color: #ff4d4f;
              font-weight: bold;
              border-radius: 50rpx;
              padding: 5rpx 10rpx;
              background-color: rgba(219, 19, 22, 0.219);
              margin-left: 10rpx;
              height: 25rpx;
            }
          }
  
          .comment-content-text {
            margin-top: 10rpx;
            font-size: 26rpx;
            letter-spacing: 1rpx;
            line-height: 1.5;
  
            .date,
            .address {
              font-size: 20rpx;
              padding: 10rpx;
              color: #858585;
            }
  
            .reply {
              font-size: 24rpx;
              padding: 10rpx;
              color: #2979ff;
            }
          }
        }
  
        .comment-opeartor {
          display: flex;
          flex-direction: column;
          align-items: flex-start;
  
          .comment-opeartor-heart-number {
            text-align: center;
            font-size: 20rpx;
          }
        }
      }
    }
  
    .sub-comment {
      margin-left: 60rpx;
      margin-top: 10rpx;
    }
  }
  </style>