fixing
This commit is contained in:
parent
58a1cc9bb8
commit
83db1a8921
1 changed files with 5 additions and 5 deletions
|
|
@ -476,7 +476,7 @@ onMounted(() => {
|
||||||
<div class="col-2 text-grey-6 text-weight-medium">ชื่อ-นามสกุล</div>
|
<div class="col-2 text-grey-6 text-weight-medium">ชื่อ-นามสกุล</div>
|
||||||
<div class="col-6">
|
<div class="col-6">
|
||||||
{{
|
{{
|
||||||
fatherData.prefix && fatherData.firstName && fatherData.lastName
|
fatherData.prefix || fatherData.firstName || fatherData.lastName
|
||||||
? fatherData.prefix +
|
? fatherData.prefix +
|
||||||
fatherData.firstName +
|
fatherData.firstName +
|
||||||
" " +
|
" " +
|
||||||
|
|
@ -550,7 +550,7 @@ onMounted(() => {
|
||||||
<div class="col-2 text-grey-6 text-weight-medium">ชื่อ-นามสกุล</div>
|
<div class="col-2 text-grey-6 text-weight-medium">ชื่อ-นามสกุล</div>
|
||||||
<div class="col-6">
|
<div class="col-6">
|
||||||
{{
|
{{
|
||||||
motherData.prefix && motherData.firstName && motherData.lastName
|
motherData.prefix || motherData.firstName || motherData.lastName
|
||||||
? motherData.prefix +
|
? motherData.prefix +
|
||||||
motherData.firstName +
|
motherData.firstName +
|
||||||
" " +
|
" " +
|
||||||
|
|
@ -644,7 +644,7 @@ onMounted(() => {
|
||||||
<div class="col-2 text-grey-6 text-weight-medium">ชื่อ-นามสกุล</div>
|
<div class="col-2 text-grey-6 text-weight-medium">ชื่อ-นามสกุล</div>
|
||||||
<div class="col-6">
|
<div class="col-6">
|
||||||
{{
|
{{
|
||||||
coupleData.prefix && coupleData.firstName && coupleData.lastName
|
coupleData.prefix || coupleData.firstName || coupleData.lastName
|
||||||
? coupleData.prefix +
|
? coupleData.prefix +
|
||||||
coupleData.firstName +
|
coupleData.firstName +
|
||||||
" " +
|
" " +
|
||||||
|
|
@ -748,8 +748,8 @@ onMounted(() => {
|
||||||
</div>
|
</div>
|
||||||
<div class="col-6">
|
<div class="col-6">
|
||||||
{{
|
{{
|
||||||
item.childrenPrefix &&
|
item.childrenPrefix ||
|
||||||
item.childrenFirstName &&
|
item.childrenFirstName ||
|
||||||
item.childrenLastName
|
item.childrenLastName
|
||||||
? item.childrenPrefix +
|
? item.childrenPrefix +
|
||||||
item.childrenFirstName +
|
item.childrenFirstName +
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue