From 6e7d5e6031ed7dc80d8e3c807b39c057d3e5ee90 Mon Sep 17 00:00:00 2001 From: setthawutttty Date: Thu, 24 Aug 2023 13:41:27 +0700 Subject: [PATCH] =?UTF-8?q?=E0=B9=80=E0=B8=9E=E0=B8=B4=E0=B9=88=E0=B8=A1?= =?UTF-8?q?=E0=B8=AB=E0=B8=A1=E0=B8=B2=E0=B8=A2=E0=B8=94=E0=B8=AB=E0=B8=95?= =?UTF-8?q?=E0=B8=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/modules/07_insignia/components/3_result/fileUpload.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/modules/07_insignia/components/3_result/fileUpload.vue b/src/modules/07_insignia/components/3_result/fileUpload.vue index bd8474e51..81dc1637a 100644 --- a/src/modules/07_insignia/components/3_result/fileUpload.vue +++ b/src/modules/07_insignia/components/3_result/fileUpload.vue @@ -56,7 +56,7 @@ const rows2 = ref([]); interface TypeData { fileName:string - annotation:string + reason:string pathName:string } const props = defineProps({ @@ -75,7 +75,7 @@ const getRequest = async () => { data.map((item:TypeData) =>{ rows2.value.push({ fileName:item.fileName, - annotation:item.annotation, + annotation:item.reason, file:item.pathName }) @@ -238,7 +238,7 @@ const save = () => { {{ props.row.fileName }} - {{ props.row.annotation !== undefined ? props.row.annotation:"-"}} + {{ props.row.annotation !== null ? props.row.annotation:"-"}}