From 28309ac2732ec1e2c14962acc1c13bc5a504c40f Mon Sep 17 00:00:00 2001 From: AnandaTon Date: Thu, 21 Dec 2023 14:49:58 +0700 Subject: [PATCH] =?UTF-8?q?=E0=B9=81=E0=B8=81=E0=B9=89=E0=B8=95=E0=B8=B1?= =?UTF-8?q?=E0=B8=A7=E0=B9=81=E0=B8=9B=E0=B8=A3=E0=B8=9B=E0=B8=A3=E0=B8=B0?= =?UTF-8?q?=E0=B9=80=E0=B8=A1=E0=B8=B4=E0=B8=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/modules/12_evaluatePersonal/store/Evaluate.ts | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/modules/12_evaluatePersonal/store/Evaluate.ts b/src/modules/12_evaluatePersonal/store/Evaluate.ts index 0539bbdb0..ee3004ab8 100644 --- a/src/modules/12_evaluatePersonal/store/Evaluate.ts +++ b/src/modules/12_evaluatePersonal/store/Evaluate.ts @@ -64,13 +64,13 @@ export const useEvalutuonStore = defineStore("EvalutuonStore", () => { console.log(data); const dataList: any[] = data.map((data: any) => ({ id: data.id, - citizanId: data.CitizenId, - fullName: data.FullName, - position: data.Position, - level: convertType(data.Type), - positionNumber: data.PosNo, - agency: data.Oc, - status: convertStatus(data.Step), + citizanId: data.citizenId, + fullName: data.fullName, + position: data.position, + level: convertType(data.type), + positionNumber: data.posNo, + agency: data.oc, + status: convertStatus(data.step), })); rows.value = dataList; console.log(dataList);