From b923de89217435309042d7036d3d34c868b7d39c Mon Sep 17 00:00:00 2001 From: XinYuan <438159536@qq.com> Date: Fri, 10 Jan 2025 14:08:00 +0800 Subject: [PATCH] =?UTF-8?q?=E8=83=A1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/Index/History.vue | 28 +++++++++++++++++----------- src/pages/Index/Regular/Running.vue | 10 +++++----- src/types/env.d.ts | 5 ----- 3 files changed, 22 insertions(+), 21 deletions(-) delete mode 100644 src/types/env.d.ts diff --git a/src/pages/Index/History.vue b/src/pages/Index/History.vue index 5e848a6..d09d008 100644 --- a/src/pages/Index/History.vue +++ b/src/pages/Index/History.vue @@ -42,52 +42,56 @@ - +
日期: - {{ formatDate(rowData!.creatDate) }} + {{ rowData && formatDate(rowData.creatDate) }}
样本id: - {{ rowData!.id }} + {{ rowData && rowData.id }}
项目名称: - {{ rowData!.projName }} + {{ rowData && rowData.id }}
subResult1: - {{ jsonResult(rowData!.subProjResult1) }} + {{ rowData && jsonResult(rowData.subProjResult1) }}
subResult2: - {{ jsonResult(rowData!.subProjResult2) }} + {{ rowData && jsonResult(rowData.subProjResult2) }} +
subResult3: - {{ jsonResult(rowData!.subProjResult3) }} + {{ rowData && jsonResult(rowData.subProjResult3) }} +
样本种类: - {{ rowData!.sampleBloodType }} + {{ rowData && rowData.sampleBloodType }} +
操次: - {{ rowData!.lotId }} + {{ rowData && rowData.lotId }} +
@@ -127,19 +131,21 @@
+
+