แก้ไขอุทธรณ์ร้องทุกข์
This commit is contained in:
parent
27f564588c
commit
7777b27cda
7 changed files with 45 additions and 33 deletions
|
|
@ -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"
|
||||
/>
|
||||
|
|
|
|||
|
|
@ -106,7 +106,7 @@ onMounted(() => {
|
|||
/>
|
||||
<q-btn
|
||||
unelevated
|
||||
label="ดำเนินกานต่อ"
|
||||
label="ดำเนินการต่อ"
|
||||
color="public"
|
||||
@click="onCilckNextStep"
|
||||
/>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue