diff --git a/lib/pages/app/hidden_record_detail_page.dart b/lib/pages/app/hidden_record_detail_page.dart index c5f42ab..704faff 100644 --- a/lib/pages/app/hidden_record_detail_page.dart +++ b/lib/pages/app/hidden_record_detail_page.dart @@ -224,6 +224,8 @@ class _HiddenRecordDetailPageState extends State { Divider(height: 1), _buildInfoItem('发现时间', pd['CREATTIME'] ?? ''), Divider(height: 1), + _buildInfoItem('隐患级别', pd['HIDDENLEVELNAME'] ?? ''), + Divider(height: 1), if (pd['HIDDEN_CATEGORY']?.isNotEmpty == true) _buildInfoItem('隐患类别', pd['HIDDEN_CATEGORY_NAME'] ?? ''), diff --git a/lib/pages/app/pending_rectification_detail_page.dart b/lib/pages/app/pending_rectification_detail_page.dart index afde82a..b953194 100644 --- a/lib/pages/app/pending_rectification_detail_page.dart +++ b/lib/pages/app/pending_rectification_detail_page.dart @@ -252,6 +252,8 @@ class _PendingRectificationDetailPageState extends State