แก้ สืบ สอบ

This commit is contained in:
setthawutttty 2023-12-15 17:29:47 +07:00
parent 749113a3cc
commit 480393efe3
8 changed files with 375 additions and 31 deletions

View file

@ -54,6 +54,7 @@ const props = defineProps({
getData: Function,
rows2: Array,
filterKeyword2: String,
title: String,
});
const checkSelected = computed(() => {
@ -68,8 +69,8 @@ const saveOrder = () => {
dialogConfirm(
$q,
() => Ordersave(),
"ยืนยันส่งไปออกคำสั่ง",
"ต้องการยืนยันส่งไปออกคำสั่งใช่หรือไม่?"
`ยืนยัน${props.title}`,
`ต้องการยืนยัน${props.title}ใช่หรือไม่?`
);
} else {
dialogMessageNotify($q, "กรุณาเลือกประเภทคำสั่ง");
@ -86,7 +87,7 @@ const Ordersave = async () => {
await http
.put(config.API.reportresult(type.value as string), body)
.then((res: any) => {
success($q, "ส่งไปออกคำสั่งสำเร็จ");
success($q, `${props.title}สำเร็จ`);
props.closeModal?.();
})
.catch((e) => {
@ -153,7 +154,7 @@ onMounted(async () => {
<template>
<q-dialog v-model="props.Modal">
<q-card style="width: 1200px; max-width: 80vw">
<DialogHeader tittle="ส่งไปออกคำสั่ง" :close="closeModal" />
<DialogHeader :tittle="props.title" :close="closeModal" />
<q-separator />
<q-card-section class="q-pt-none">
<div class="row justify-between">
@ -271,7 +272,7 @@ onMounted(async () => {
<q-card-actions align="right" class="bg-white text-teal">
<q-btn
label="ส่งไปออกคำสั่ง"
:label="props.title"
@click="saveOrder"
:disable="checkSelected"
color="public"