fix bug
This commit is contained in:
parent
c9ec713f14
commit
20fba03d07
1 changed files with 7 additions and 3 deletions
|
|
@ -209,8 +209,8 @@ async function confirmApprove() {
|
|||
),
|
||||
data
|
||||
)
|
||||
.then(() => {
|
||||
nextStep();
|
||||
.then(async () => {
|
||||
await nextStep();
|
||||
modalConfirm.value = false;
|
||||
})
|
||||
.catch((e) => {
|
||||
|
|
@ -337,6 +337,10 @@ async function fetchDataSigner() {
|
|||
author.value = data.authorDoc2;
|
||||
subject.value = data.subjectDoc2;
|
||||
assignedPosition.value = data.assignedPosition;
|
||||
|
||||
nameOfWork.value = data.authorDoc2;
|
||||
nameOfOwner.value = data.subjectDoc2;
|
||||
position.value = data.assignedPosition;
|
||||
}
|
||||
})
|
||||
.catch((e) => {
|
||||
|
|
@ -983,7 +987,7 @@ onMounted(async () => {
|
|||
unelevated
|
||||
label="ยืนยันผลการพิจารณา"
|
||||
color="public"
|
||||
@click="confirmApprove"
|
||||
@click="modalConfirm = true"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue