fix ordering oraganization
This commit is contained in:
parent
17d8c32ce4
commit
3aa299ae8e
6 changed files with 25 additions and 7 deletions
|
|
@ -32,6 +32,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*/
|
||||
|
|
@ -95,7 +99,7 @@ function getData() {
|
|||
type: store.level,
|
||||
isAll: false,
|
||||
page: 1,
|
||||
pageSize: 100,
|
||||
pageSize: props.totalData,
|
||||
keyword: "",
|
||||
revisionId: store.activeId,
|
||||
})
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue