瀏覽代碼

对DateTime类型增加tryParse

loki.wu 2 年之前
父節點
當前提交
a2c9e6fbe6
共有 4 個文件被更改,包括 87 次插入19 次删除
  1. 21 15
      assets/report_info.json
  2. 8 4
      lib/report_info/date_time_info.dart
  3. 1 0
      web/index.html
  4. 57 0
      web/js/pre.js

+ 21 - 15
assets/report_info.json

@@ -1,34 +1,40 @@
 [{
-	"Key": "9fbbaa61-a91d-4399-a3f4-df29117d2d59",
-	"Value": "http://43.138.119.65:9303/Flyinsono-BJ-1300984704.VCS.AP-BeiJing/91e059d1a22146a788e051287c1b917d.VID"
-}, {
-	"Key": "c463558b-7161-4fcb-9b89-b55ca885eef4",
+	"Key": "7abbaa61-a91d-4399-a3f4-df29117d2d59",
 	"Value": ""
 }, {
-	"Key": "d7093837-6136-4ff6-9d87-e0b236861274",
-	"Value": "2022-07-13 10:53:56.245108"
+	"Key": "91bbaa61-a91d-4399-a3f4-df29117d2d59",
+	"Value": "SS"
 }, {
-	"Key": "ce626edf-43e0-4e52-9752-016bad8474d7",
+	"Key": "93bbaa61-a91d-4399-a3f4-df29117d2d59",
 	"Value": ""
 }, {
-	"Key": "B2340A5E-16FA-4321-B79D-C14412F24AD5",
+	"Key": "92bbaa61-a91d-4399-a3f4-df29117d2d59",
 	"Value": ""
 }, {
-	"Key": "61babd3c-00d7-4f29-b0bf-018a25253272",
+	"Key": "9a3baa61-a91d-4399-a3f4-df29117d2d59",
 	"Value": ""
 }, {
 	"Key": "90bbaa61-a91d-4399-a3f4-df29117d2d59",
 	"Value": ""
 }, {
-	"Key": "84e26e4a-6efc-4bd6-8528-04248bb65ff6",
-	"Value": ""
+	"Key": "9bbbaa61-a91d-4399-a3f4-df29117d2d59",
+	"Value": []
+}, {
+	"Key": "9fbbaa61-a91d-4399-a3f4-df29117d2d59",
+	"Value": ["https://flyinsono-bj-1300984704.cos.ap-beijing.myqcloud.com/513c6e1c20e84fbd8e6de5c37babe248.vid", "https://flyinsono-bj-1300984704.cos.ap-beijing.myqcloud.com/78f2b80856da4e479cc5cfb0a21ea179.vid"]
+}, {
+	"Key": "9dbbaa61-a91d-4399-a3f4-df29117d2d59",
+	"Value": "增大的子宫切面内可见胎儿回声,[耻骨联合上|上腹部|下腹部|左侧腹|右侧腹|左下腹|右下腹|左上腹|右上腹]可见胎头圆形光环,胎儿[双顶径|BPD]__ mm,[头围|HC]__mm,胎心:__ 次/min[心律齐|心律不齐],胎儿[腹围|AC]:__ mm,[头围与腹围比值|HC/AC]:__,比值[正常|增大|减小],胎儿[股骨|FL]长:__mm,[股骨长与腹围比值|FL/AC×100]__,比值[正常|增大|减小],胎儿体重[正常|高于正常|小于正常],约__kg,胎盘附着"
+}, {
+	"Key": "9ebbaa61-a91d-4399-a3f4-df29117d2d59",
+	"Value": "单胎[头位|臀位|横位],胎儿存活。胎盘[0度|I度|II度|III度]。考虑[宫颈机能不全|宫颈机能不全可能]。"
+}, {
+	"Key": "415df52f-3fef-46c5-a39f-c3e3090e79f2",
+	"Value": "2022-07-19 20:16:35.445"
 }, {
 	"Key": "6abbaa61-a91d-4399-a3f4-df29117d2d59",
 	"Value": ""
 }, {
 	"Key": "5abbaa61-a91d-4399-a3f4-df29117d2d59",
-	"Value": "testCustomTemplate"
-}, {
-	"Key": "CD340A5E-16FA-4321-B79D-C14012F24AD5",
-	"Value": ["1选项", "2选项"]
+	"Value": "Loki"
 }]

+ 8 - 4
lib/report_info/date_time_info.dart

@@ -9,10 +9,14 @@ class DateTimeInfo extends TextElementInfo {
   String get text => _text;
   set text(String v) {
     _text = v;
-    final date = DateTime.parse(_text.trim());
-    displayValue = DateToStringConverter.dateTimeConvert(
-            dateTimeFormat!, date.millisecondsSinceEpoch)
-        .trim();
+    final date = DateTime.tryParse(_text.trim());
+    if (date != null) {
+      displayValue = DateToStringConverter.dateTimeConvert(
+              dateTimeFormat!, date.millisecondsSinceEpoch)
+          .trim();
+    } else {
+      displayValue = v;
+    }
     onTextChange.emit(this, v);
   }
 

+ 1 - 0
web/index.html

@@ -36,6 +36,7 @@
   <!-- This script installs service_worker.js to provide PWA functionality to
        application. For more information, see:
        https://developers.google.com/web/fundamentals/primers/service-workers -->
+  <script src="js/pre.js?v=202112020857"></script>
   <script>
     var serviceWorkerVersion = null;
     var scriptLoaded = false;

+ 57 - 0
web/js/pre.js

@@ -0,0 +1,57 @@
+!(function (window) {
+    var env = {};
+    window.env = env;
+    checkPlatform(env);
+    var isCN = checkIsChinese();
+    initTitle(isCN);
+    initSplash(isCN);
+
+    function initTitle(isCN) {
+        document.title = isCN ? "杏聆荟" : "Flyinsono";
+    }
+
+    function initSplash(isCN) {
+        var splash = document.getElementsByClassName('splash')[0];
+        if (!splash) return;
+        splash.classList.add(isCN ? 'splash_cn' : 'splash_en');
+    }
+
+    function checkPlatform(target) {
+        // injectWinTest();
+        var shell = window["FisShellApi"];
+        if (shell) {
+            target.platform = 'shell';
+            shell.getPlatformName().then(function (res) {
+                target.platform = res;
+            });
+        } else {
+            target.platform = 'Web';
+        }
+    }
+    /// inject `FisShellApi` for debug
+    function injectWinTest() {
+        window["FisShellApi"] = {
+            writeLog: async (text) => {
+                console.log(text);
+            },
+            getPlatformName: async () => "Win",
+            setTitle: async (title) => {
+                console.log(`Set title - ${title}`);
+            },
+        };
+    }
+
+    function checkIsChinese() {
+        var lang = navigator.language.split('-')[0].toLocaleLowerCase();
+        // var storeLocale = localStorage['flutter.store_app_locale'];
+        // if (storeLocale != null && storeLocale.length) {
+        //     try {
+        //         var arr = JSON.parse(storeLocale);
+        //         if (arr && arr.length === 2) {
+        //             lang = arr[0].toLocaleLowerCase();
+        //         }
+        //     } catch (error) { }
+        // }
+        return lang === 'zh';
+    }
+})(window);