เคลียโค้ด
This commit is contained in:
parent
df3d266969
commit
11c6259b90
6 changed files with 6 additions and 53 deletions
|
|
@ -178,12 +178,6 @@ const visibleColumns = ref<string[]>([
|
|||
"orderStatusName",
|
||||
]);
|
||||
|
||||
/** โหลดข้อมูลเมื่อเข้าหน้านี้ */
|
||||
onMounted(() => {
|
||||
OrderStore.columns = columns.value;
|
||||
OrderStore.visibleColumns = visibleColumns.value;
|
||||
});
|
||||
|
||||
/** pagination */
|
||||
const pagination = ref({
|
||||
descending: true,
|
||||
|
|
@ -210,6 +204,12 @@ const redirectToPage = (id?: string, status?: string) => {
|
|||
}
|
||||
router.push(`/discipline-order/detail/${id}?step=${step}`);
|
||||
};
|
||||
|
||||
/** โหลดข้อมูลเมื่อเข้าหน้านี้ */
|
||||
onMounted(() => {
|
||||
OrderStore.columns = columns.value;
|
||||
OrderStore.visibleColumns = visibleColumns.value;
|
||||
});
|
||||
</script>
|
||||
|
||||
<template>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue