fix bug
This commit is contained in:
parent
f212dce287
commit
1732209a2f
16 changed files with 34 additions and 28 deletions
|
|
@ -8,7 +8,6 @@ import { useRoute } from "vue-router";
|
|||
import { checkPermission } from "@/utils/permissions";
|
||||
import { useCounterMixin } from "@/stores/mixin";
|
||||
import { useStructureTree } from "@/stores/structureTree";
|
||||
import { useMenuDataStore } from "@/stores/menuList";
|
||||
|
||||
import genReportXLSX from "@/plugins/genreportxlsx";
|
||||
import http from "@/plugins/http";
|
||||
|
|
@ -20,7 +19,6 @@ import type {
|
|||
} from "@/modules/09_leave/interface/index/Main";
|
||||
|
||||
import LoadView from "@/components/LoadView.vue";
|
||||
import type { DataRoles } from "@/interface/response/main";
|
||||
|
||||
const expandedModal = ref<boolean>(false);
|
||||
const org = ref<string>("");
|
||||
|
|
@ -30,7 +28,6 @@ const isLoadStructureTree = ref<boolean>(true);
|
|||
/** use*/
|
||||
const $q = useQuasar();
|
||||
const route = useRoute();
|
||||
const storeMenu = useMenuDataStore();
|
||||
|
||||
const { fetchStructureTree } = useStructureTree();
|
||||
const { date2Thai, dateToISO, messageError, monthYear2Thai } =
|
||||
|
|
@ -114,6 +111,7 @@ const leaveTypeOptionOption = ref<DataOption[]>(leaveTypeOptionMain.value);
|
|||
const detailReport = ref<any>();
|
||||
const isReport = ref<boolean>(false);
|
||||
const isLoadPDF = ref<boolean>(false);
|
||||
const splitterModel = ref<number>(14);
|
||||
|
||||
/** tree*/
|
||||
const filterTree = ref<string>("");
|
||||
|
|
@ -942,6 +940,8 @@ onMounted(() => {
|
|||
</div>
|
||||
<div class="col-lg-9 col-md-9 col-sm-9 col-xs-12 col-xs-12 flex">
|
||||
<q-splitter
|
||||
disable
|
||||
v-model="splitterModel"
|
||||
horizontal
|
||||
style="
|
||||
height: 75vh;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue