ปรับ filter รายงานสถิติ
This commit is contained in:
parent
62c3435db6
commit
11e11933cc
2 changed files with 150 additions and 69 deletions
|
|
@ -3,7 +3,7 @@ import { useRouter } from "vue-router";
|
|||
|
||||
const router = useRouter();
|
||||
|
||||
function nextPage(type: string,) {
|
||||
function nextPage(type: string) {
|
||||
router.push(`/statistics-report/${type}`);
|
||||
}
|
||||
</script>
|
||||
|
|
@ -12,16 +12,16 @@ function nextPage(type: string,) {
|
|||
<div>
|
||||
<q-card flat bordered class="col-12 q-mt-sm">
|
||||
<div class="q-pa-md">
|
||||
<q-item clickable dense class="hover-green" @click="nextPage('daily')">
|
||||
<q-item clickable dense class="hover-green" @click="nextPage('time-records')">
|
||||
<q-item-section avatar>
|
||||
<q-icon color="primary" name="mdi-file" size="xs" />
|
||||
</q-item-section>
|
||||
<q-item-section class="text-dark">
|
||||
รายงานสรุปบันทึกการลงเวลาปฏิบัติงานเป็นรายวัน
|
||||
รายงานสรุปบันทึกการลงเวลาปฏิบัติงาน
|
||||
</q-item-section>
|
||||
</q-item>
|
||||
|
||||
<q-item
|
||||
<!-- <q-item
|
||||
clickable
|
||||
dense
|
||||
class="hover-green"
|
||||
|
|
@ -33,18 +33,23 @@ function nextPage(type: string,) {
|
|||
<q-item-section class="text-dark">
|
||||
รายงานสรุปบันทึกการลงเวลาปฏิบัติงานเป็นรายเดือน
|
||||
</q-item-section>
|
||||
</q-item>
|
||||
</q-item> -->
|
||||
|
||||
<q-item clickable dense class="hover-green" @click="nextPage('yearly')">
|
||||
<!-- <q-item clickable dense class="hover-green" @click="nextPage('yearly')">
|
||||
<q-item-section avatar>
|
||||
<q-icon color="primary" name="mdi-file" size="xs" />
|
||||
</q-item-section>
|
||||
<q-item-section class="text-dark">
|
||||
รายงานสรุปบันทึกการลงเวลาปฏิบัติงานเป็นรายปี
|
||||
</q-item-section>
|
||||
</q-item>
|
||||
</q-item> -->
|
||||
|
||||
<q-item clickable dense class="hover-green" @click="nextPage('leaveday')">
|
||||
<q-item
|
||||
clickable
|
||||
dense
|
||||
class="hover-green"
|
||||
@click="nextPage('leaveday')"
|
||||
>
|
||||
<q-item-section avatar>
|
||||
<q-icon color="primary" name="mdi-file" size="xs" />
|
||||
</q-item-section>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue