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 () => { /> -
+
ไม่พบข้อมูล
+