跟进动态列表

This commit is contained in:
WindowBird 2025-11-11 15:46:23 +08:00
parent 28ec62e90d
commit 253428e378

View File

@ -21,7 +21,6 @@
/>
<view class="followup-user-info">
<text class="followup-user-name">{{ item.userName }}</text>
</view>
</view>
<text class="followup-text">{{ item.content }}</text>
@ -29,6 +28,7 @@
<text class="time-icon">🕐</text>
<text class="followup-time">{{ formatTimeOnly(item.followTime) }}</text>
</view>
<text class="followup-arrow"></text>
</view>
</view>
</template>
@ -196,6 +196,8 @@ const handleFollowupClick = (item) => {
background-color: #ffffff;
border-radius: 12px;
padding: 16px;
padding-right: 32px; /* 为右侧箭头预留空间 */
cursor: pointer;
position: relative;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
@ -251,6 +253,10 @@ const handleFollowupClick = (item) => {
color: #d0d0d0;
font-weight: 300;
transition: color 0.2s ease;
position: absolute;
right: 12px;
top: 50%;
transform: translateY(-50%);
}
.followup-item:active .followup-arrow {