From 0a6feb0c9c504da8852c82eb4d364a8a0b6e6148 Mon Sep 17 00:00:00 2001 From: "DESKTOP-1R2VSQH\\Lenovo ThinkPad E490" Date: Wed, 14 Feb 2024 14:07:55 +0700 Subject: [PATCH] =?UTF-8?q?=E0=B8=97=E0=B8=B0=E0=B9=80=E0=B8=9A=E0=B8=B5?= =?UTF-8?q?=E0=B8=A2=E0=B8=99=E0=B8=9B=E0=B8=A3=E0=B8=B0=E0=B8=A7=E0=B8=B1?= =?UTF-8?q?=E0=B8=95=E0=B8=B4=20=E0=B8=9B=E0=B8=A3=E0=B8=B1=E0=B8=9A=20tab?= =?UTF-8?q?le?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../04_registry/components/Assessment.vue | 4 +- src/modules/04_registry/components/Coin.vue | 41 +++++++++-------- .../04_registry/components/Discipline.vue | 37 ++++++++------- .../04_registry/components/Education.vue | 33 ++++++++------ .../04_registry/components/Insignia.vue | 45 +++++++++---------- src/modules/04_registry/components/Leave.vue | 18 ++++---- src/modules/04_registry/components/Other.vue | 8 ++-- src/modules/04_registry/components/Record.vue | 23 +++++----- src/modules/04_registry/components/Talent.vue | 6 +-- src/modules/04_registry/components/Train.vue | 12 ++--- src/modules/04_registry/components/Work.vue | 26 ++++++----- .../04_registry/interface/request/Coin.ts | 5 ++- .../04_registry/interface/response/Coin.ts | 1 + 13 files changed, 143 insertions(+), 116 deletions(-) diff --git a/src/modules/04_registry/components/Assessment.vue b/src/modules/04_registry/components/Assessment.vue index 01b003642..bc3413908 100644 --- a/src/modules/04_registry/components/Assessment.vue +++ b/src/modules/04_registry/components/Assessment.vue @@ -24,14 +24,14 @@ class="cursor-pointer" >
- {{ date2Thai(col.value) }} + {{ col.value ? date2Thai(col.value) : "-" }}
{{ textPoint(props.row.pointSum) }} {{ textRangePoint(props.row.pointSum) }}
- {{ col.value }} + {{ col.value ? col.value : "-" }}
diff --git a/src/modules/04_registry/components/Coin.vue b/src/modules/04_registry/components/Coin.vue index 68ecc631d..5d1ebdb1e 100644 --- a/src/modules/04_registry/components/Coin.vue +++ b/src/modules/04_registry/components/Coin.vue @@ -1,3 +1,4 @@ +a