更新快检功能

This commit is contained in:
wyf
2026-03-10 12:01:00 +08:00
parent d0ae2a9f76
commit 6472baf993
48 changed files with 8046 additions and 120 deletions

View File

@@ -565,23 +565,25 @@ class _DynamicReportDetailWidgetState extends State<DynamicReportDetailWidget> {
return Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
ClickableContainer(
backgroundColor: Colors.transparent,
highlightColor: themeController.currentColor.sc3.withOpacity(0.2),
padding: EdgeInsets.zero,
onTap: () async {
await Get.toNamed("/bodyDevice", arguments: targetDevice);
},
child: Text(
targetDevice['person']?['name']?.isNotEmpty == true
? targetDevice['person']['name']
: '体征监测设备'.tr,
style: TextStyle(
fontSize: 30.rpx,
color: themeController.currentColor.sc3,
Expanded(
child: ClickableContainer(
backgroundColor: Colors.transparent,
highlightColor: themeController.currentColor.sc3.withOpacity(0.2),
padding: EdgeInsets.zero,
onTap: () async {
await Get.toNamed("/bodyDevice", arguments: targetDevice);
},
child: Text(
targetDevice['person']?['name']?.isNotEmpty == true
? targetDevice['person']['name']
: '体征监测设备'.tr,
style: TextStyle(
fontSize: 30.rpx,
color: themeController.currentColor.sc3,
),
maxLines: 1,
overflow: TextOverflow.ellipsis,
),
maxLines: 1,
overflow: TextOverflow.ellipsis,
),
),
if (!AppConstants.is_test_account)