|
@@ -8,7 +8,11 @@ import 'package:flutter/cupertino.dart';
|
|
|
import 'package:flutter/material.dart';
|
|
|
import 'package:vitalapp/components/appbar.dart';
|
|
|
import 'package:vitalapp/components/no_data_view.dart';
|
|
|
+import 'package:vitalapp/pages/medical/models/worker.dart';
|
|
|
+import 'package:vitalapp/pages/medical/widgets/device_status_position.dart';
|
|
|
+import 'package:vitalapp/pages/medical/widgets/twelve_ecg.dart';
|
|
|
import 'package:vitalapp/pages/medical/widgets/twelve_ecg_view/view.dart';
|
|
|
+import 'package:vitalapp/pages/medical/widgets/twelve_ecg_view/widgets/ecg_device_status.dart';
|
|
|
import 'package:vnote_device_plugin/models/exams/twelve_heart.dart';
|
|
|
|
|
|
import 'ecg_term_selection.dart';
|
|
@@ -91,12 +95,24 @@ class EcgResultViewState extends State<EcgResultView> {
|
|
|
titleText: "体检心电",
|
|
|
actions: [
|
|
|
Container(
|
|
|
- margin: EdgeInsets.only(right: 10),
|
|
|
- child: Text(
|
|
|
- widget.recordInfo.patientName ?? '',
|
|
|
- style: TextStyle(color: Colors.white, fontSize: 24),
|
|
|
- ),
|
|
|
- ),
|
|
|
+ margin: EdgeInsets.only(right: 10),
|
|
|
+ child: Row(
|
|
|
+ children: [
|
|
|
+ Text(
|
|
|
+ widget.recordInfo.patientName ?? '',
|
|
|
+ style: TextStyle(color: Colors.white, fontSize: 24),
|
|
|
+ ),
|
|
|
+ SizedBox(width: 38),
|
|
|
+ ElevatedButton(
|
|
|
+ onPressed: () {},
|
|
|
+ child: Text(
|
|
|
+ "提交",
|
|
|
+ style: TextStyle(
|
|
|
+ fontSize: 20,
|
|
|
+ ),
|
|
|
+ ))
|
|
|
+ ],
|
|
|
+ )),
|
|
|
],
|
|
|
),
|
|
|
drawer: Drawer(
|
|
@@ -175,6 +191,7 @@ class EcgResultViewState extends State<EcgResultView> {
|
|
|
SizedBox(height: gapHeight),
|
|
|
Row(
|
|
|
children: [
|
|
|
+ SizedBox(width: 15),
|
|
|
SizedBox(width: 15),
|
|
|
_buildKeyValue("走速:", "25 mm/s"),
|
|
|
SizedBox(width: 15),
|
|
@@ -182,20 +199,20 @@ class EcgResultViewState extends State<EcgResultView> {
|
|
|
],
|
|
|
),
|
|
|
SizedBox(height: gapHeight),
|
|
|
- Row(
|
|
|
- children: [
|
|
|
- SizedBox(width: 15),
|
|
|
- _buildKeyValue("基线滤波:", "1.6-2.0 Hz"),
|
|
|
- SizedBox(width: 15),
|
|
|
- _buildKeyValue("肌电滤波:", "53 Hz"),
|
|
|
- SizedBox(width: 15),
|
|
|
- _buildKeyValue("AC", ""),
|
|
|
- SizedBox(width: 15),
|
|
|
- _buildKeyValue("工频滤波:", "50 Hz"),
|
|
|
- SizedBox(width: 15),
|
|
|
- ],
|
|
|
- ),
|
|
|
- SizedBox(height: gapHeight),
|
|
|
+ // Row(
|
|
|
+ // children: [
|
|
|
+ // SizedBox(width: 15),
|
|
|
+ // _buildKeyValue("基线滤波:", "1.6-2.0 Hz"),
|
|
|
+ // SizedBox(width: 15),
|
|
|
+ // _buildKeyValue("肌电滤波:", "53 Hz"),
|
|
|
+ // SizedBox(width: 15),
|
|
|
+ // _buildKeyValue("AC", ""),
|
|
|
+ // SizedBox(width: 15),
|
|
|
+ // _buildKeyValue("工频滤波:", "50 Hz"),
|
|
|
+ // SizedBox(width: 15),
|
|
|
+ // ],
|
|
|
+ // ),
|
|
|
+ // SizedBox(height: gapHeight),
|
|
|
Row(
|
|
|
children: [
|
|
|
SizedBox(width: 15),
|
|
@@ -221,7 +238,6 @@ class EcgResultViewState extends State<EcgResultView> {
|
|
|
ElevatedButton(
|
|
|
onPressed: () {
|
|
|
scaffoldKey.currentState?.openDrawer();
|
|
|
- // Navigator.pop(context);
|
|
|
},
|
|
|
child: Text("词条选择"),
|
|
|
),
|