fix: rating

This commit is contained in:
zzc
2026-06-10 00:09:22 +08:00
parent 1173a3e3a1
commit 829f9a07d4

View File

@@ -101,7 +101,7 @@
</view> </view>
<view class="participant-actions"> <view class="participant-actions">
<!-- <text class="drag-icon"></text> --> <!-- <text class="drag-icon"></text> -->
<text class="delete-icon" @tap="removeParticipant(item.id)">🗑</text> <image class="delete-icon-img" src="/static/images/icon/remove.png" @tap="removeParticipant(item.id)" mode="aspectFit"></image>
</view> </view>
</view> </view>
@@ -704,11 +704,10 @@ const handleSubmit = async () => {
line-height: 1; line-height: 1;
} }
.delete-icon { .delete-icon-img {
font-size: 32rpx; /* 图标放大 */ width: 44rpx;
color: #ff6b6b; /* 明确的删除红色 */ height: 44rpx;
line-height: 1; padding: 10rpx; /* 增加点击热区 */
padding: 8rpx; /* 增加点击区域 */
} }
.add-participant { .add-participant {