- 修正了非回复状态下 userReply 字段赋值为 1 的逻辑错误 - 确保反馈列表中用户回复状态显示正确
@@ -53,7 +53,7 @@ class FeedbackRepository extends BaseRepository
->where('uid', '>', 0)
->find();
if (!$isReply) {
- $item['userReply'] = 0;
+ $item['userReply'] = 1;
}else{
$userReply = Db::name('feedback_reply')
->where(['feedback_id' => $item['feedback_id']])