Преглед на файлове

增加README说明,移除无效引用

loki.wu преди 2 години
родител
ревизия
4bafb9967f
променени са 2 файла, в които са добавени 29 реда и са изтрити 16 реда
  1. 27 9
      README.md
  2. 2 7
      lib/pages/components/multi_selected.dart

+ 27 - 9
README.md

@@ -1,16 +1,34 @@
 # fis_lib_report
 
-A new Flutter project.
+为主项目提供报告模板,报告编辑,报告模板及内容的序列化与反序列化
 
-## Getting Started
+## 项目入口
 
-This project is a starting point for a Flutter application.
+``` dart
+                    ReportEditPage(
+                      reporter: '',//报告医师
+                      reportDate: DateTime.now(),///报告日期
+                      jsonStr: jsonStr,//模板Json
+                      onSelect: new FEventHandler<String>(),//选择图像事件
+                      patinentAge:'',//病人年龄
+                      patinentName: '',//病人名称
+                      patinentSex: '',//病人性别
+                    ),
+```
 
-A few resources to get you started if this is your first Flutter project:
+## 启动方式
 
-- [Lab: Write your first Flutter app](https://flutter.dev/docs/get-started/codelab)
-- [Cookbook: Useful Flutter samples](https://flutter.dev/docs/cookbook)
+WEb or Win
+直接启动后程序后进入测试页面,有Mock数据和一些基本操作按钮
 
-For help getting started with Flutter, view our
-[online documentation](https://flutter.dev/docs), which offers tutorials,
-samples, guidance on mobile development, and a full API reference.
+## 主要方法
+
+初始化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)

+ 2 - 7
lib/pages/components/multi_selected.dart

@@ -1,20 +1,15 @@
 import 'package:fis_lib_report/converts/pt_to_px_converter.dart';
 import 'package:fis_lib_report/converts/text_size_converter.dart';
-import 'package:fis_lib_report/pages/components/input_text.dart';
-import 'package:fis_lib_report/report/inputText.dart';
 import 'package:fis_lib_report/report/multiSelected.dart';
 import 'package:fis_lib_report/report/rt_color.dart';
-import 'package:fis_lib_report/report/singleSelected.dart';
 import 'package:fis_lib_report/report_info/multi_selected_info.dart';
 import 'package:fis_lib_report/report_info/report_info.dart';
 import 'package:flutter/material.dart';
 import 'package:dropdown_button2/dropdown_button2.dart';
-import 'package:fis_lib_report/report/inputText.dart';
-import 'package:fis_ui/simple/select.dart';
 
 class RMultiSelected extends StatefulWidget {
   final MultiSelected multiSelected;
-  RMultiSelected(this.multiSelected);
+  const RMultiSelected(this.multiSelected);
   @override
   State<StatefulWidget> createState() {
     return _RRMultiSelectedState();
@@ -30,7 +25,7 @@ class _RRMultiSelectedState extends State<RMultiSelected> {
   double _width = 0.0;
   MulitiSelectedInfo? _mulitiSelectedInfo;
 
-  TextStyle _textStyle = TextStyle();
+  TextStyle _textStyle = const TextStyle();
   @override
   initState() {
     super.initState();