fix(request-edit):send_citizenId
All checks were successful
Build & Deploy on Dev / build (push) Successful in 2m53s
All checks were successful
Build & Deploy on Dev / build (push) Successful in 2m53s
This commit is contained in:
parent
8867829211
commit
a320fea116
3 changed files with 6 additions and 3 deletions
|
|
@ -60,6 +60,7 @@ async function closeDialog() {
|
||||||
function onSubmit() {
|
function onSubmit() {
|
||||||
dialogConfirm($q, async () => {
|
dialogConfirm($q, async () => {
|
||||||
const body = {
|
const body = {
|
||||||
|
fatherCitizenId: fatherData.citizenId,
|
||||||
fatherPrefix: fatherData.prefix,
|
fatherPrefix: fatherData.prefix,
|
||||||
fatherFirstName: fatherData.firstName,
|
fatherFirstName: fatherData.firstName,
|
||||||
fatherLastName: fatherData.lastName,
|
fatherLastName: fatherData.lastName,
|
||||||
|
|
@ -109,7 +110,7 @@ watch(
|
||||||
() => {
|
() => {
|
||||||
if (modal.value) {
|
if (modal.value) {
|
||||||
storeLinkCenter.fetchPerson();
|
storeLinkCenter.fetchPerson();
|
||||||
fatherData.citizenId = idCard.value;
|
// fatherData.citizenId = idCard.value;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
|
||||||
|
|
@ -60,6 +60,7 @@ async function closeDialog() {
|
||||||
function onSubmit() {
|
function onSubmit() {
|
||||||
dialogConfirm($q, async () => {
|
dialogConfirm($q, async () => {
|
||||||
const body = {
|
const body = {
|
||||||
|
motherCitizenId: motherData.citizenId,
|
||||||
motherPrefix: motherData.prefix,
|
motherPrefix: motherData.prefix,
|
||||||
motherFirstName: motherData.firstName,
|
motherFirstName: motherData.firstName,
|
||||||
motherLastName: motherData.lastName,
|
motherLastName: motherData.lastName,
|
||||||
|
|
@ -108,7 +109,7 @@ watch(
|
||||||
() => {
|
() => {
|
||||||
if (modal.value) {
|
if (modal.value) {
|
||||||
storeLinkCenter.fetchPerson();
|
storeLinkCenter.fetchPerson();
|
||||||
motherData.citizenId = idCard.value;
|
// motherData.citizenId = idCard.value;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
|
||||||
|
|
@ -64,6 +64,7 @@ async function closeDialog() {
|
||||||
function onSubmit() {
|
function onSubmit() {
|
||||||
dialogConfirm($q, async () => {
|
dialogConfirm($q, async () => {
|
||||||
const body = {
|
const body = {
|
||||||
|
coupleCitizenId: coupleData.citizenId,
|
||||||
couplePrefix: coupleData.prefix,
|
couplePrefix: coupleData.prefix,
|
||||||
coupleFirstName: coupleData.firstName,
|
coupleFirstName: coupleData.firstName,
|
||||||
coupleLastName: coupleData.lastName,
|
coupleLastName: coupleData.lastName,
|
||||||
|
|
@ -132,7 +133,7 @@ watch(
|
||||||
if (modal.value) {
|
if (modal.value) {
|
||||||
storeLinkCenter.fetchPerson();
|
storeLinkCenter.fetchPerson();
|
||||||
storeLinkCenter.fetchDataRelationship();
|
storeLinkCenter.fetchDataRelationship();
|
||||||
coupleData.citizenId = idCard.value;
|
// coupleData.citizenId = idCard.value;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue