From 0b90806124ae0969821a7e070c556f5bc793c866 Mon Sep 17 00:00:00 2001 From: zhangjiming Date: Sat, 18 Jan 2025 14:42:55 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B0=83=E6=95=B4=E5=8E=86=E5=8F=B2=E9=A1=B5?= =?UTF-8?q?=E9=9D=A2=E6=A0=B7=E5=BC=8F=E5=8F=8A=E5=BC=B9=E6=A1=86=E6=A0=B7?= =?UTF-8?q?=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/Index/History.vue | 121 +++++---------------- src/pages/Index/Index.vue | 3 - .../Index/components/History/HistoryMessage.vue | 4 +- .../Index/components/History/HistoryTable.vue | 12 +- src/types/Index/History.ts | 11 +- 5 files changed, 44 insertions(+), 107 deletions(-) diff --git a/src/pages/Index/History.vue b/src/pages/Index/History.vue index 1618c2d..424ae2b 100644 --- a/src/pages/Index/History.vue +++ b/src/pages/Index/History.vue @@ -46,72 +46,19 @@
-
- 日期: - {{ rowData && formatDate(rowData.creatDate) }} -
-
- -
- 样本id: - {{ rowData && rowData.id }} -
-
- -
- 项目名称: - {{ rowData && rowData.id }} -
- -
- Result: - {{ rowData && JSON.stringify(rowData.results) }} -
-
- -
-
- 样本种类: - {{ rowData && rowData.sampleBloodType }} - -
- -
- 操次: - {{ rowData && rowData.lotId }} - -
- -
- Rec: - Record 1 -
- -
- 有效期: - 2024-12-31 -
-
- -
- 操作人: - John Doe -
- -
- 序列号: - SN12345 -
- -
- App Ver: - 1.0.0 -
- -
- F/W Ver: - 2.0.0 -
+

日期:{{ rowData && formatDate(rowData.creatDate) }}

+

{{ rowData && (rowData.sampleUserid || rowData.sampleId) }}

+

{{ rowData && rowData.projName }}

+ +
    +
  • 样本种类:{{ rowData && settingTubeStore.bloodTypeKeyMap[rowData.sampleBloodType].name }}
  • +
  • 批次:{{ rowData && rowData.lotId }}
  • +
  • 有效期:{{ rowData && formatDate(rowData.expiryDate) }}
  • +
  • 操作人:{{ rowData && rowData.operator }}
  • +
  • 序列号:{{ rowData && rowData.sn }}
  • +
  • App Ver: {{ rowData && rowData.appVersion }}
  • +
  • F/W ver: {{ rowData && rowData.mcuVersion }}
  • +