fix(placement): send posExecutiveId field in payload

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2026-05-22 09:53:21 +07:00
parent d978ba870b
commit b03fe7d44a
7 changed files with 17 additions and 5 deletions

View file

@ -1,5 +1,5 @@
<script setup lang="ts">
import { ref, onMounted, watch, reactive, computed } from "vue";
import { ref, onMounted, watch, reactive, computed, type PropType } from "vue";
import { useQuasar, QForm } from "quasar";
import http from "@/plugins/http";
@ -48,7 +48,7 @@ const {
/** รับค่ามาจากหน้าหลัก */
const props = defineProps({
statCard: {
type: Function,
type: Function as PropType<() => Promise<void>>,
default: () => console.log("getStat"),
},
});