This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-10-03 14:12:34 +07:00
parent 3736aa7e80
commit cedcbb0eaa
8 changed files with 102 additions and 111 deletions

View file

@ -12,7 +12,6 @@ const mixin = useCounterMixin();
const $q = useQuasar();
const { dialogConfirm, dialogMessageNotify } = mixin;
const rows = ref<any[]>([]);
const props = defineProps({
title: {
type: String,
@ -50,7 +49,7 @@ const props = defineProps({
const modalCommand = ref<boolean>(false);
const emit = defineEmits(["returnPerson"]);
const selected = ref<any>([]);
const selected = ref<any[]>([]);
const inspectionResults = ref<string>("");
const filter = ref<string>("");
const initialPagination = ref<any>({
@ -208,7 +207,7 @@ watch(
<DialogCreateCommand
v-model:modal="modalCommand"
:command-type-code="'C-PM-32'"
:persons="selected"
:persons="selected"
/>
</template>