fix
This commit is contained in:
parent
3736aa7e80
commit
cedcbb0eaa
8 changed files with 102 additions and 111 deletions
|
|
@ -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>
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue