แก้ไขอุทธรณ์ร้องทุกข์

This commit is contained in:
Warunee Tamkoo 2023-12-13 18:06:21 +07:00
parent 27f564588c
commit 7777b27cda
7 changed files with 45 additions and 33 deletions

View file

@ -28,16 +28,26 @@ const $q = useQuasar();
function onCilckNextStep() {
store.step < 9 &&
dialogConfirm($q, () => {
store.step++;
});
dialogConfirm(
$q,
() => {
store.step++;
},
"ยืนยันการดำเนินการ",
"ต้องการยืนยันการดำเนินการต่อใช่หรือไม่?"
);
}
function onCilckprPeviousStep() {
store.step > 1 &&
dialogConfirm($q, () => {
store.step--;
});
dialogConfirm(
$q,
() => {
store.step--;
},
"ยืนยันการย้อนกลับ",
"ต้องการย้อนกลับใช่หรือไม่?"
);
}
onMounted(() => {
@ -106,7 +116,7 @@ onMounted(() => {
/>
<q-btn
unelevated
label="ดำเนินกาต่อ"
label="ดำเนินกาต่อ"
color="public"
@click="onCilckNextStep"
/>

View file

@ -106,7 +106,7 @@ onMounted(() => {
/>
<q-btn
unelevated
label="ดำเนินกาต่อ"
label="ดำเนินกาต่อ"
color="public"
@click="onCilckNextStep"
/>