hookehuyr

fix: 修复反馈列表状态判断使用宽松相等

- 将状态判断从严格相等(===)改为宽松相等(==)
- 提高对数字/字符串类型混用的兼容性

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
......@@ -33,10 +33,10 @@
<view class="flex items-center">
<view
class="w-[12rpx] h-[12rpx] rounded-full mr-[8rpx]"
:class="item.status === 5 ? 'bg-green-500' : 'bg-orange-500'"
:class="item.status == 5 ? 'bg-green-500' : 'bg-orange-500'"
></view>
<text class="text-[24rpx] font-medium" :class="item.status === 5 ? 'text-green-600' : 'text-orange-600'">
{{ item.status === 5 ? '已处理' : '待处理' }}
<text class="text-[24rpx] font-medium" :class="item.status == 5 ? 'text-green-600' : 'text-orange-600'">
{{ item.status == 5 ? '已处理' : '待处理' }}
</text>
</view>
</view>
......