บันทึกวันที่ไม่ได้รับเงินดือน
This commit is contained in:
parent
af9ce4ac1e
commit
a7d629da86
3 changed files with 101 additions and 313 deletions
|
|
@ -7,6 +7,9 @@ import { useRoute } from "vue-router";
|
|||
import http from "@/plugins/http";
|
||||
import config from "@/app.config";
|
||||
|
||||
import { useCounterMixin } from "@/stores/mixin";
|
||||
import { useSalaryDataStore } from "@/modules/04_registryPerson/stores/salary";
|
||||
|
||||
import type { QTableColumn } from "quasar";
|
||||
import type {
|
||||
DataPositions,
|
||||
|
|
@ -22,11 +25,6 @@ import type { ResListSalary } from "@/modules/04_registryPerson/interface/respon
|
|||
|
||||
import DialogHeader from "@/components/DialogHeader.vue";
|
||||
import DialogHistory from "@/modules/04_registryPerson/components/detail/DialogHistory.vue";
|
||||
|
||||
// import DialogHistory from "@/modules/04_registryPerson/components/detail/Salary/01_PositionSalaryHistory.vue";
|
||||
|
||||
import { useCounterMixin } from "@/stores/mixin";
|
||||
import { useSalaryDataStore } from "@/modules/04_registryPerson/stores/salary";
|
||||
import DialogPreviewCommand from "@/modules/18_command/components/DialogPreviewCommand.vue";
|
||||
|
||||
const { findOrgName } = useCounterMixin();
|
||||
|
|
@ -341,7 +339,8 @@ const columns = computed<QTableColumn[]>(() => {
|
|||
}
|
||||
}
|
||||
return baseColumns.value.filter(
|
||||
(e: any) => e.name !== "lastUpdateFullName" && e.name !== "lastUpdatedAd"
|
||||
(e: QTableColumn) =>
|
||||
e.name !== "lastUpdateFullName" && e.name !== "lastUpdatedAd"
|
||||
);
|
||||
});
|
||||
const visibleColumns = ref<string[]>(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue