111
This commit is contained in:
@@ -358,7 +358,9 @@ class _BillsPageState extends State<BillsPage> with SingleTickerProviderStateMix
|
||||
// 福利賬單
|
||||
// ============================================
|
||||
Widget _buildWelfareTab(String type) {
|
||||
final records = _welfareRecords.where((r) => r['type'] == type).toList();
|
||||
final records = _welfareRecords
|
||||
.where((r) => r['type'] == type && r['status'] == 1)
|
||||
.toList();
|
||||
|
||||
if (records.isEmpty) {
|
||||
return _buildEmptyState(
|
||||
|
||||
Reference in New Issue
Block a user