fix ordering oraganization

This commit is contained in:
Warunee Tamkoo 2025-06-06 11:27:14 +07:00
parent 17d8c32ce4
commit 3aa299ae8e
6 changed files with 25 additions and 7 deletions

View file

@ -1,5 +1,5 @@
<script setup lang="ts">
import { ref, watch, } from "vue";
import { ref, watch } from "vue";
import { useQuasar } from "quasar";
import http from "@/plugins/http";
@ -24,6 +24,10 @@ const { dialogConfirm, showLoader, success, hideLoader, messageError } =
const modal = defineModel<boolean>("sortPosition", { required: true });
const props = defineProps({
fetchDataTable: Function,
totalData: {
type: Number,
default: 0,
},
});
/** ข้อมูล Table*/
@ -83,7 +87,7 @@ function getData() {
type: store.level,
isAll: false,
page: 1,
pageSize: 100,
pageSize: props.totalData,
keyword: "",
revisionId: store.draftId,
})

View file

@ -966,6 +966,7 @@ watch(
<DialogSort
v-model:sort-position="modalSort"
:fetchDataTable="props.fetchDataTable"
:total-data="totalData"
/>
<!-- ายตำแหน -->