From 73e633f6862e7da22acc7fadce4fb20b68a8aeb8 Mon Sep 17 00:00:00 2001 From: Asoka Date: Thu, 5 Jun 2025 16:17:25 +0800 Subject: [PATCH] add bga mock vue --- src/views/bio/test/bga/index.vue | 51 ++++++++++++++++++++++++++++++++ src/views/bio/test/bga/mock.ts | 14 +++++++++ 2 files changed, 65 insertions(+) create mode 100644 src/views/bio/test/bga/index.vue create mode 100644 src/views/bio/test/bga/mock.ts diff --git a/src/views/bio/test/bga/index.vue b/src/views/bio/test/bga/index.vue new file mode 100644 index 0000000..d2ecd84 --- /dev/null +++ b/src/views/bio/test/bga/index.vue @@ -0,0 +1,51 @@ + + + + + \ No newline at end of file diff --git a/src/views/bio/test/bga/mock.ts b/src/views/bio/test/bga/mock.ts new file mode 100644 index 0000000..0a7d9b2 --- /dev/null +++ b/src/views/bio/test/bga/mock.ts @@ -0,0 +1,14 @@ +// Mock data for BGA test page +export interface BgaDataItem { + id: number + sample: string + value: number + status: string +} + +export const bgaDataList: BgaDataItem[] = [ + { id: 1, sample: 'Sample A', value: 42, status: 'OK' }, + { id: 2, sample: 'Sample B', value: 37, status: 'OK' }, + { id: 3, sample: 'Sample C', value: 50, status: 'Warning' }, + { id: 4, sample: 'Sample D', value: 28, status: 'Fail' }, +] \ No newline at end of file