From 860da528ddb1d5f09e28fd888d250375cd7e714a Mon Sep 17 00:00:00 2001 From: oat_dev Date: Mon, 1 Apr 2024 14:04:26 +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=B9=81=E0=B8=81=E0=B9=89=E0=B9=84?= =?UTF-8?q?=E0=B8=82=E0=B9=82=E0=B8=AB=E0=B8=A5=E0=B8=94=E0=B8=84=E0=B9=89?= =?UTF-8?q?=E0=B8=B2=E0=B8=87=E0=B8=82=E0=B8=AD=E0=B8=87=E0=B8=9B=E0=B8=A3?= =?UTF-8?q?=E0=B8=B0=E0=B8=A7=E0=B8=B1=E0=B8=95=E0=B8=B4=E0=B8=82=E0=B9=89?= =?UTF-8?q?=E0=B8=AD=E0=B8=A1=E0=B8=B9=E0=B8=A5=E0=B8=84=E0=B8=A3=E0=B8=AD?= =?UTF-8?q?=E0=B8=9A=E0=B8=84=E0=B8=A3=E0=B8=B1=E0=B8=A7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../detail/PersonalInformation/04_Family.vue | 66 +++++++++---------- 1 file changed, 32 insertions(+), 34 deletions(-) diff --git a/src/modules/04_registryNew/components/detail/PersonalInformation/04_Family.vue b/src/modules/04_registryNew/components/detail/PersonalInformation/04_Family.vue index 96b2b6b48..e197f856e 100644 --- a/src/modules/04_registryNew/components/detail/PersonalInformation/04_Family.vue +++ b/src/modules/04_registryNew/components/detail/PersonalInformation/04_Family.vue @@ -36,32 +36,29 @@ const index = ref(1); const fatherData = reactive({ isHaveInfo: 1, isLive: 0, - citizenId: "123123213", - prefix: "นาย", - optionPrefix: ["นาย", "จ่าสิบเอก"], - firstName: "ณัฐพัฐ", - lastName: "ดิษยบุตร", - job: "ตำรวจ", + citizenId: "", + prefix: "", + firstName: "", + lastName: "", + job: "", }); const motherData = reactive({ isHaveInfo: 1, isLive: 0, - citizenId: "222222222", - prefix: "นาง", - optionPrefix: ["นาง", "นางสาว"], - firstName: "นางอริญกัญญา", - lastName: "ดิษยบุตร", - job: "พยาบาล", + citizenId: "", + prefix: "", + firstName: "", + lastName: "", + job: "", }); const spouseData = reactive({ isHave: 1, isLive: 0, - citizenId: "44444444", - prefix: "นาย", - optionPrefix: ["นาย", "นาง", "นางสาว"], - firstName: "กัญจาพล", - lastName: "ดิอุรุกษา", - job: "ค้าขาย", + citizenId: "", + prefix: "", + firstName: "", + lastName: "", + job: "", }); const rows = ref([]); @@ -294,25 +291,25 @@ onMounted(async () => {
เลขบัตรประจำตัวประชาชน
- {{ fatherData.citizenId }} + {{ fatherData.citizenId ? fatherData.citizenId : "-" }}
คำนำหน้าชื่อ
- {{ fatherData.prefix }} + {{ fatherData.prefix ? fatherData.prefix : "-" }}
ชื่อ
- {{ fatherData.firstName }} + {{ fatherData.firstName ? fatherData.firstName : "-" }}
นามสกุล
- {{ fatherData.lastName }} + {{ fatherData.lastName ? fatherData.lastName : "-" }}
อาชีพ
- {{ fatherData.job }} + {{ fatherData.job ? fatherData.job : "-" }}
@@ -336,25 +333,25 @@ onMounted(async () => {
เลขบัตรประจำตัวประชาชน
- {{ motherData.citizenId }} + {{ motherData.citizenId ? motherData.citizenId : "-" }}
คำนำหน้าชื่อ
- {{ motherData.prefix }} + {{ motherData.prefix ? motherData.prefix : "-" }}
ชื่อ
- {{ motherData.firstName }} + {{ motherData.firstName ? motherData.firstName : "-" }}
นามสกุล
- {{ motherData.lastName }} + {{ motherData.lastName ? motherData.lastName : "-" }}
อาชีพ
- {{ motherData.job }} + {{ motherData.job ? motherData.job : "-" }}
@@ -378,25 +375,25 @@ onMounted(async () => {
เลขบัตรประจำตัวประชาชน
- {{ spouseData.citizenId }} + {{ spouseData.citizenId ? spouseData.citizenId : "-" }}
คำนำหน้าชื่อ
- {{ spouseData.prefix }} + {{ spouseData.prefix ? spouseData.prefix : "-" }}
ชื่อ
- {{ spouseData.firstName }} + {{ spouseData.firstName ? spouseData.firstName : "-" }}
นามสกุล
- {{ spouseData.lastName }} + {{ spouseData.lastName ? spouseData.lastName : "-" }}
อาชีพ
- {{ spouseData.job }} + {{ spouseData.job ? spouseData.job : "-" }}
@@ -1041,7 +1038,8 @@ onMounted(async () => { /> -
+
ไม่พบข้อมูล
+