Nessuna descrizione

loki.wu 4bafb9967f 增加README说明,移除无效引用 2 anni fa
.vscode 64e50be360 修复再次打开报告时报告医师和报告时间不显示 2 anni fa
android 9046ca471e 新建报告相关仓储 2 anni fa
assets 21cfc1f38a 修复编辑报告中选择词条内容较多时无法动态增加输入框的高度 2 anni fa
ios 9046ca471e 新建报告相关仓储 2 anni fa
lib 4bafb9967f 增加README说明,移除无效引用 2 anni fa
test 9046ca471e 新建报告相关仓储 2 anni fa
web 9046ca471e 新建报告相关仓储 2 anni fa
windows 9046ca471e 新建报告相关仓储 2 anni fa
.gitignore 9046ca471e 新建报告相关仓储 2 anni fa
.metadata 9046ca471e 新建报告相关仓储 2 anni fa
README.md 4bafb9967f 增加README说明,移除无效引用 2 anni fa
analysis_options.yaml 9046ca471e 新建报告相关仓储 2 anni fa
pubspec.lock 64e50be360 修复再次打开报告时报告医师和报告时间不显示 2 anni fa
pubspec.yaml 64e50be360 修复再次打开报告时报告医师和报告时间不显示 2 anni fa

README.md

fis_lib_report

为主项目提供报告模板,报告编辑,报告模板及内容的序列化与反序列化

项目入口

                    ReportEditPage(
                      reporter: '',//报告医师
                      reportDate: DateTime.now(),///报告日期
                      jsonStr: jsonStr,//模板Json
                      onSelect: new FEventHandler<String>(),//选择图像事件
                      patinentAge:'',//病人年龄
                      patinentName: '',//病人名称
                      patinentSex: '',//病人性别
                    ),

启动方式

WEb or Win 直接启动后程序后进入测试页面,有Mock数据和一些基本操作按钮

主要方法

初始化ReportInfo:ReportInfo.instance.init()

从Json中加载ReportInfo数据 : ReportInfo.instance.fromJson(json)

插入报告描述&超声提示: ReportInfo.instance.insertDiagnostic(desc,tips)

ReportInfo转为Json,用于报告存储至Server: ReportInfo.instance.toJson()

重新渲染UI&重构:ReportInfo.instance.reload(reporter,date,jsonStr,onSelect)