diff --git a/src/interface/request/main/main.ts b/src/interface/request/main/main.ts index 36d485167..49a3c21c6 100644 --- a/src/interface/request/main/main.ts +++ b/src/interface/request/main/main.ts @@ -121,7 +121,7 @@ const menuList = readonly([ }, { key: 10, - icon: "o_list", + icon: "mdi-file-certificate-outline", activeIcon: "order", label: "ออกคำสั่ง", path: "order", diff --git a/src/modules/05_placement/components/AppointMent/Main.vue b/src/modules/05_placement/components/AppointMent/Main.vue index 9165fa683..3a4c8fca7 100644 --- a/src/modules/05_placement/components/AppointMent/Main.vue +++ b/src/modules/05_placement/components/AppointMent/Main.vue @@ -192,8 +192,6 @@ const columns = ref([ field: "createdAt", headerStyle: "font-size: 14px", style: "font-size: 14px", - sort: (a, b) => (b.createdAt) - (a.createdAt) - }, { name: "status", @@ -337,6 +335,13 @@ const status = (val: string) => { return "-"; } }; +const pagination = ref({ + sortBy: "createdAt", + descending: true, + page: 1, + rowsPerPage: 10, +}); +