Merge branch 'develop'

* develop:
  updated report url
  fix report development
  fix report
  fix รายงานวินัย
  เพิ่มรายงานวินัย
  report salary
This commit is contained in:
Warunee Tamkoo 2025-02-12 10:54:38 +07:00
commit 5a05067ade
8 changed files with 815 additions and 94 deletions

View file

@ -34,6 +34,7 @@ export default {
/** download File */
developmentReportMain: () => `${developmentReport}/main`,
developmentReport: () => `${developmentReport}/`,
developmentReportHistory: () => `${developmentReport}/history-officer`,
developmentReportHistoryOfficer: () =>
`${developmentReport}/history-employee`,
@ -51,6 +52,7 @@ export default {
devStrategy,
/** IDP */
developmentReQuestIDP: (id: string) => `${developmentOrg}/profile/development/registry/OFFICER/${id}`,
developmentReQuestIDP: (id: string) =>
`${developmentOrg}/profile/development/registry/OFFICER/${id}`,
developmentIDP: (id: string) => `${development}/main/registry/OFFICER/${id}`,
};

View file

@ -52,6 +52,8 @@ interface DataStructureTree {
totalRootPositionNextUse: number;
totalRootPositionNextVacant: number;
children: DataStructureTree[];
orgRootCode: string;
orgRootShortName: string;
}
interface DataStrategy {

View file

@ -37,9 +37,25 @@ const optionReport = ref<OptionData[]>([
},
{
id: "report2",
name: " บัญชีระดับผลการประเมินผลการปฏิบัติราชการในรอบ 5 ปี",
name: "บัญชีระดับผลการประเมินผลการปฏิบัติราชการในรอบ 5 ปี",
},
{ id: "report3", name: "บัญชีแสดงจำนวนชั้นตราเครื่องราชฯ 5 ปี" },
{
id: "report4",
name: "รายชื่อข้าราชการฯ ที่ได้รับ/ไม่ได้รับการจ่ายใบกำกับฯ",
},
{
id: "report5",
name: "รายงานสถิติการได้รับเครื่องราชอิสริยาภรณ์ข้าราชการฯ",
},
{
id: "report6",
name: "รายงานผลการจ่ายประกาศนียบัตรกำกับเครื่องราชอิสริยาภรณ์ แยกรายหน่วยงาน",
},
{
id: "report7",
name: "รายงานแสดงรายชื่อลูกจ้างประจำที่ได้รับ/ไมได้รับ การจ่ายใบกำกับฯ เครื่องราชอิสริยาภรณที่ได้รับพระราชทาน (ลูกจ้าง)",
},
{ id: "report3", name: " บัญชีแสดงจำนวนชั้นตราเครื่องราชฯ 5 ปี" },
]);
const roundId = ref<string>("");
@ -138,7 +154,14 @@ async function onUpdateFilter() {
.then(async (res) => {
const data = await res.data.result;
detailReport.value = data;
await fetchDocumentTemplate(data);
const type =
typeReport.value === "report4" ||
typeReport.value === "report5" ||
typeReport.value === "report6" ||
typeReport.value === "report7"
? "xlsx"
: "docx";
await fetchDocumentTemplate(data, type);
})
.catch(async (e) => {
messageError($q, JSON.parse(await e.response.data.text()));
@ -153,9 +176,9 @@ async function onUpdateFilter() {
* function เรยกไฟล PDF
* @param data อมลบญชนลา
*/
async function fetchDocumentTemplate(data: any) {
async function fetchDocumentTemplate(data: any, type: string = "docx") {
await axios
.post(`${config.API.reportTemplate}/docx`, data, {
.post(`${config.API.reportTemplate}/${type}`, data, {
headers: {
accept: "application/pdf",
"content-Type": "application/json",

View file

@ -121,30 +121,36 @@ function onSelectedNode(id: string, level: number) {
async function onUpdateFilter() {
isLoadPDF.value = true;
pdfSrc.value = undefined;
const body = {
nodeId: nodeId.value,
node: nodeLevel.value,
year: year.value,
offenseDetail: offenseDetail.value,
disciplinaryFaultLevel: disciplinaryFaultLevel.value,
status: status.value,
posType: posType.value ? posType.value : null,
posLevel: posLevel.value ? posLevel.value : null,
};
await http
.post(config.API.disciplineReportByType(employeeClass.value), body)
.then(async (res) => {
const data = res.data.result;
detailReport.value = data;
data && (await genReportPreview(data));
})
.catch(async (e) => {
messageError($q, JSON.parse(await e.response.data.text()));
})
.finally(() => {
isLoadPDF.value = false;
});
if (nodeId) {
const body = {
nodeId: nodeId.value,
node: nodeLevel.value,
year: year.value,
offenseDetail: offenseDetail.value,
disciplinaryFaultLevel: disciplinaryFaultLevel.value,
status: status.value,
posType: posType.value
? posTypeOp.value.find((e: any) => e.id === posType.value)?.posTypeName
: null,
posLevel: posLevel.value
? posLevelOp.value.find((e: any) => e.id === posLevel.value)
?.posLevelName
: null,
};
await http
.post(config.API.disciplineReportByType(employeeClass.value), body)
.then(async (res) => {
const data = res.data.result;
detailReport.value = data;
data && (await genReportPreview(data));
})
.catch(async (e) => {
messageError($q, JSON.parse(await e.response.data.text()));
})
.finally(() => {
isLoadPDF.value = false;
});
}
}
/**
@ -195,14 +201,21 @@ function backPage() {
}
}
function downloadReport(type: string) {}
/**
* งกเรยกขอมลรายการประเภทตำแหน
*/
async function getType() {
posType.value = "";
posLevel.value = "";
posTypeMainOp.value = [];
posTypeOp.value = [];
posLevelOp.value = [];
const apiPath =
employeeClass.value === "officer"
? config.API.orgPosType
: config.API.orgEmployeeType;
await http
.get(config.API.orgPosType)
.get(apiPath)
.then(async (res) => {
posTypeMainOp.value = await res.data.result;
})
@ -226,7 +239,7 @@ function filterOption(val: string, update: any, typeOp: string) {
);
} else if (typeOp == "level") {
posLevelOp.value = posLevelMainOp.value.filter(
(v: any) => v.posLevelName.toLowerCase().indexOf(needle) > -1
(v: any) => v.posLevelName.toString().toLowerCase().indexOf(needle) > -1
);
}
});
@ -234,10 +247,20 @@ function filterOption(val: string, update: any, typeOp: string) {
function updateLevel(val: string) {
if (val) {
const listData = posTypeMainOp.value.find(
const listData: any = posTypeMainOp.value.find(
(item: PosType) => item.id == val
);
posLevelMainOp.value = listData ? listData.posLevels : [];
console.log(listData);
if (employeeClass.value === "officer") {
posLevelMainOp.value = listData ? listData.posLevels : [];
} else {
posLevelMainOp.value = listData
? listData.posLevels.map((e: any) => ({
...e,
posLevelName: `${listData?.posTypeShortName} ${e.posLevelName}`,
}))
: [];
}
}
}
onMounted(async () => {
@ -263,15 +286,15 @@ onMounted(async () => {
option-label="name"
option-value="id"
style="width: 230px"
@update:model-value="onUpdateFilter"
@update:model-value="getType"
>
</q-select>
<q-space />
<q-btn
:disable="!nodeId"
flat
round
:disable="!nodeId || !employeeClass"
color="primary"
icon="download"
v-if="checkPermission($route)?.attrIsGet"

View file

@ -170,6 +170,11 @@ export const useSalaryListSDataStore = defineStore("salaryListStore", () => {
name: "แนบท้ายคำสั่งค่าตอบแทนพิเศษ และผู้ไม่ได้เลื่อนเงินเดือน รอบตุลาคม (PDF)",
type: "pdf",
},
{
id: "gov-10",
name: "แบบบัญชีถือจ่าย (จ.๑๘) ของข้าราชการกรุงเทพมหานครสามัญ",
},
]);
function fetchPeriodLatest(data: DataPeriodLatest, type: string) {

View file

@ -72,12 +72,18 @@ interface ProbationReportType {
evaluate_date: Date;
}
interface FileType{
path:string
pathname:string
fileName:string
title:string
interface FileType {
path: string;
pathname: string;
fileName: string;
title: string;
}
interface DataOption {
id: string;
name: string;
}
export type {
ListDataText,
DataSurvey,
@ -85,5 +91,6 @@ export type {
AppointTopicMain,
AppointTopic,
ProbationReportType,
FileType
FileType,
DataOption,
};

View file

@ -24,25 +24,35 @@ const employeeClassOption = ref<OptionData[]>([
{ id: "employee", name: "ลูกจ้างประจำ กทม." },
]);
const typeReport = ref<string>("main");
const optionReport = ref<OptionData[]>([
{
id: "main",
name: "โครงการ/กิจกรรมตามแผนพัฒนาทรัพยากรบุคคลของกรุงเทพมหานคร",
},
{
id: "report3",
name: "รายงานข้อมูลข้าราชการกรุงเทพมหานครสามัญที่ได้รับทุนการศึกษา",
},
{
id: "report4",
name: "รายงานข้อมูลข้าราชการกรุงเทพมหานครสามัญ ที่ส่งไปพัฒนากับหน่วยงานภายนอก",
},
{
id: "report5",
name: "รายงานข้อมูลข้าราชการกรุงเทพมหานครสามัญที่ไปศึกษา ฝึกอบรม ประชุม ดูงาน และปฏิบัติการวิจัย ณ ต่างประเทศ",
},
{
id: "report6",
name: "รายงานสถิติข้อมูลการศึกษาต่อ การฝึกอบรม ศึกษาดูงาน ของข้าราชการกรุงเทพมหานครสามัญ",
},
]);
const splitterModel = ref(14);
const numOfPages = ref<number>(0);
const page = ref<number>(1);
const pdfSrc = ref<any>();
interface RangeAge {
min: number;
max: number;
}
const objMarkerLabel = computed(() => {
return { 39: `ช่วงอายุ ${rangeAge.value.min}-${rangeAge.value.max} ปี` };
});
const rangeAge = ref<RangeAge>({
min: 18,
max: 60,
});
const detailReport = ref<any>();
/** ไปหน้าต่อไปของรายงาน */
@ -61,8 +71,9 @@ function backPage() {
async function getReport() {
loadingBtn.value = true;
pdfSrc.value = undefined;
await http
.get(config.API.developmentReportMain())
.get(config.API.developmentReport() + `${typeReport.value}`)
.then(async (res) => {
const data = res.data.result;
detailReport.value = data;
@ -131,39 +142,25 @@ onMounted(async () => {
<div class="q-pa-sm q-gutter-sm">
<q-card flat bordered class="col-12">
<div class="row q-col-gutter-sm q-pa-sm">
<div class="row col-12">
<datepicker
menu-class-name="modalfix"
v-model="year"
:locale="'th'"
autoApply
year-picker
:enableTimePicker="false"
@update:model-value="getReport"
>
<template #year="{ year }">{{ year + 543 }}</template>
<template #year-overlay-value="{ value }">{{
parseInt(value + 543)
}}</template>
<template #trigger>
<q-input
dense
outlined
:model-value="year === 0 ? 'ทั้งหมด' : Number(year) + 543"
:label="`${'ปีงบประมาณ'}`"
bg-color="white"
>
<template v-slot:prepend>
<q-icon
name="event"
class="cursor-pointer"
style="color: var(--q-primary)"
>
</q-icon>
</template>
</q-input>
</template>
</datepicker>
<div class="row col-12 q-col-gutter-sm">
<div class="col-md-6 col-xs-12">
<q-select
class="bg-white"
hide-bottom-space
outlined
dense
lazy-rules
borderless
v-model="typeReport"
:label="`${'รายงาน'}`"
emit-value
map-options
:options="optionReport"
option-value="id"
option-label="name"
@update:model-value="getReport"
/>
</div>
<q-space />
<q-btn
@ -212,6 +209,45 @@ onMounted(async () => {
</q-menu>
</q-btn>
</div>
<div class="row col-12">
<q-card bordered class="col-12 filter-card q-pa-sm">
<div class="row col-md-3 col-xs-6">
<datepicker
menu-class-name="modalfix"
v-model="year"
:locale="'th'"
autoApply
year-picker
:enableTimePicker="false"
@update:model-value="getReport"
>
<template #year="{ year }">{{ year + 543 }}</template>
<template #year-overlay-value="{ value }">{{
parseInt(value + 543)
}}</template>
<template #trigger>
<q-input
dense
outlined
:model-value="year === 0 ? 'ทั้งหมด' : Number(year) + 543"
:label="`${'ปีงบประมาณ'}`"
bg-color="white"
>
<template v-slot:prepend>
<q-icon
name="event"
class="cursor-pointer"
style="color: var(--q-primary)"
>
</q-icon>
</template>
</q-input>
</template>
</datepicker>
</div>
</q-card>
</div>
</div>
</q-card>
<q-card flat bordered class="col-12">

View file

@ -1,7 +1,630 @@
<script setup lang="ts"></script>
<script setup lang="ts">
import { ref, onMounted, computed } from "vue";
import { useQuasar } from "quasar";
import { VuePDF, usePDF } from "@tato30/vue-pdf";
import axios from "axios";
import { checkPermission } from "@/utils/permissions";
import { useCounterMixin } from "@/stores/mixin";
import { useSalaryListSDataStore } from "@/modules/13_salary/store/SalaryListsStore";
import { useSalaryEmployeeListSDataStore } from "@/modules/13_salary/store/SalaryEmployeeListsStore";
import genReportXLSX from "@/plugins/genreportxlsx";
import config from "@/app.config";
import http from "@/plugins/http";
import type { DataStructureTree } from "@/interface/main";
import type { DataOption } from "@/modules/21_report/interface/Main";
import LoadView from "@/components/LoadView.vue";
const $q = useQuasar();
const store = useSalaryListSDataStore();
const storeEmp = useSalaryEmployeeListSDataStore();
const { messageError, showLoader, hideLoader } = useCounterMixin();
const year = ref<number>(new Date().getFullYear());
const isLoadFilePdf = ref<boolean>(false);
const employeeClass = ref<string>("officer");
const employeeClassOption = ref<DataOption[]>([
{ id: "officer", name: "ข้าราชการ กทม. สามัญ" },
{ id: "employee", name: "ลูกจ้างประจำ กทม." },
]);
const isRound = ref<boolean>(false);
const round = ref<any>("");
const roundOptions = ref<any[]>([]);
const group = ref<string>("GROUP1");
const groupOptions = ref<DataOption[]>([
{ id: "GROUP1", name: "กลุ่ม 1" },
{ id: "GROUP2", name: "กลุ่ม 2" },
]);
const report = ref<string>("");
const reportOption = computed(() => {
const storeData = employeeClass.value === "officer" ? store : storeEmp;
if (round.value.shortCode === "APR") {
return storeData.itemDownloadApr.filter((e) => e.type !== "pdf");
} else if (round.value.shortCode === "OCT") {
return storeData.itemDownloadOct.filter((e) => e.type !== "pdf");
}
return [];
});
const numOfPages = ref<number>(0);
const page = ref<number>(1);
const pdfSrc = ref<any>();
const filterTree = ref<string>("");
const nodeId = ref<string>("");
const nodeName = ref<string>("");
const node = ref<DataStructureTree[]>([]);
const detailReport = ref<any>();
/** ฟังก์ชันเรียกข้อมูลรอบการขึ้นเงินเดือน*/
async function fetchDataRound() {
isRound.value = false;
showLoader();
await http
.get(
config.API.salaryPeriodActive(year.value.toString()) +
`?page=${1}&pageSize=${50}&keyword=&year=0`
)
.then(async (res) => {
const data = await res.data.result.data;
if (data.length > 0) {
isRound.value = true;
roundOptions.value = await data.map((e: any) => ({
...e,
shortCode: e.period,
name:
e.period === "OCT"
? "รอบตุลาคม "
: e.period === "SPECIAL"
? "รอบพิเศษ "
: "รอบเมษายน ",
}));
round.value = roundOptions.value[0];
await fetchDataOrg(roundOptions.value[0].revisionId);
} else {
isRound.value = false;
}
})
.catch((e) => {
messageError($q, e);
})
.finally(() => {
hideLoader();
});
}
async function fetchDataOrg(revisionId: string) {
if (revisionId) {
await http
.get(config.API.activeOrganizationRootById(revisionId))
.then(async (res) => {
const data = res.data.result.map((item: DataStructureTree) => ({
...item,
children: null,
labelName: `${item.orgRootName} ${item.orgRootCode} ${item.orgRootShortName}`,
}));
node.value = data;
})
.catch((err) => {
messageError($q, err);
});
}
}
/**
* function เลอกหนวยงาน
* @param id id หนวยงาน
* @param level ระดบหนวยงาน
*/
function onSelectedNode(id: string, name: string) {
if (id !== nodeId.value) {
nodeId.value = id;
nodeName.value = name;
fetchReportPDF();
}
}
function onChangeYear() {
fetchDataRound();
}
function fetchReportPDF() {
if (
employeeClass.value &&
round.value &&
group.value &&
report.value &&
nodeId.value
) {
fetchDataReportUnified(report.value, employeeClass.value);
}
}
async function fetchDataReportUnified(
reportCode: string,
employeeClass: string,
) {
isLoadFilePdf.value = true;
pdfSrc.value = undefined
const isHalfYearReport = (id: string) =>
["go1", "go2", "go2-01", "emp-08", "emp2-08"].includes(id);
if (isHalfYearReport(reportCode)) {
const formData: any = {
type: "HAFT",
startDate:
reportCode === "go1" || reportCode === "emp-08"
? `${round.value?.year - 1}-10-01`
: `${round.value?.year}-04-01`,
endDate:
reportCode === "go1" || reportCode === "emp-08"
? `${round.value?.year}-03-31`
: `${round.value?.year}-09-30`,
nodeId: nodeId.value,
};
if (reportCode === "go2-01") {
formData.isRetirement = true;
}
const pathApi =
employeeClass === "officer"
? reportCode === "go2-01"
? config.API.leaveReportLeavedayRetire()
: config.API.leaveReportLeaveday("officer")
: config.API.leaveReportLeaveday("employee");
try {
const res = await http.post(pathApi, formData);
const dataList = res.data.result;
await fetchDocumentTemplate(dataList);
// await genReportXLSX(dataList, data.name);
} catch (e) {
messageError($q, e);
} finally {
hideLoader();
isLoadFilePdf.value = false;
}
} else if (nodeId.value && round.value) {
const url = config.API.salaryReportListsByid(
reportCode,
nodeId.value,
round.value.id
);
const isGovernmentId = [
"gov-01",
"gov-03",
"gov-04",
"gov-04-01",
"gov-05",
"gov-05-01",
"gov-07",
"gov-07-01",
"gov-08",
"gov-10",
].includes(reportCode);
const finalUrl = isGovernmentId ? `${url}/${group.value}` : url;
try {
const res = await http.get(finalUrl);
const dataList = res.data.result;
// await genReportXLSX(dataList, data.name, type);
await fetchDocumentTemplate(dataList);
} catch (e) {
messageError($q, e);
} finally {
hideLoader();
isLoadFilePdf.value = false;
}
}
}
/**
* function เรยกไฟล PDF
* @param data อมลบญชนลา
*/
async function fetchDocumentTemplate(data: any) {
detailReport.value = data;
await axios
.post(`${config.API.reportTemplate}/xlsx`, data, {
headers: {
accept: "application/pdf",
"content-Type": "application/json",
},
responseType: "blob",
})
.then(async (res) => {
const blob = new Blob([res.data]);
const objectUrl = URL.createObjectURL(blob);
const pdfData = usePDF(`${objectUrl}`);
setTimeout(() => {
pdfSrc.value = pdfData.pdf.value;
numOfPages.value = pdfData.pages.value;
}, 1500);
})
.catch(async (e) => {
messageError($q, JSON.parse(await e.response.data.text()));
});
}
function onDownloadFile(type: string) {
const name = reportOption.value.find((e) => e.id === report.value)?.name;
genReportXLSX(detailReport.value, `${name}_${nodeName.value}`, type);
}
/** กลับหน้าก่อนหน้าของรายงาน */
function backPage() {
if (page.value !== 1) {
page.value--;
}
}
/** ไปหน้าต่อไปของรายงาน */
function nextPage() {
if (page.value < numOfPages.value) {
page.value++;
}
}
onMounted(() => {
fetchDataRound();
});
</script>
<template>
<div class="toptitle text-dark col-12 row items-center">รายงานเงนเดอน</div>
<div class="q-pa-sm q-gutter-sm">
<q-card flat bordered class="col-12">
<div class="row q-col-gutter-sm q-pa-sm">
<div class="row col-12">
<q-select
outlined
dense
v-model="employeeClass"
:options="employeeClassOption"
label="สภานภาพ"
emit-value
map-options
option-label="name"
option-value="id"
bg-color="white"
@update:model-value="(report = ''), fetchReportPDF"
>
</q-select>
<q-space />
<q-btn
:loading="isLoadFilePdf"
flat
round
color="primary"
icon="download"
:disable="report === '' || nodeId === ''"
v-if="checkPermission($route)?.attrIsGet"
>
<q-menu>
<q-list style="min-width: 150px">
<q-item
clickable
v-close-popup
@click.stop.pervent="onDownloadFile('pdf')"
>
<q-item-section avatar
><q-icon color="red" name="mdi-file-pdf"
/></q-item-section>
<q-item-section>ไฟล .pdf</q-item-section>
</q-item>
<q-item
clickable
v-close-popup
@click.stop.pervent="onDownloadFile('xlsx')"
>
<q-item-section avatar
><q-icon color="green" name="mdi-file-excel"
/></q-item-section>
<q-item-section>ไฟล .xlsx</q-item-section>
</q-item>
</q-list>
</q-menu>
</q-btn>
</div>
<div class="row col-12">
<q-card bordered class="col-12 filter-card q-pa-sm">
<div class="row col-12 q-col-gutter-sm items-center">
<div class="row col-md-8 col-sx-12 q-col-gutter-sm">
<div class="col-md-3 col-xs-6">
<datepicker
menu-class-name="modalfix"
v-model="year"
:locale="'th'"
autoApply
year-picker
:enableTimePicker="false"
@update:model-value="onChangeYear"
>
<template #year="{ year }">{{ year + 543 }}</template>
<template #year-overlay-value="{ value }">{{
parseInt(value + 543)
}}</template>
<template #trigger>
<q-input
dense
outlined
:model-value="
year === 0 ? 'ทั้งหมด' : Number(year) + 543
"
:label="`${'ปีงบประมาณ'}`"
bg-color="white"
>
<template v-slot:prepend>
<q-icon
name="event"
class="cursor-pointer"
style="color: var(--q-primary)"
>
</q-icon>
</template>
</q-input>
</template>
</datepicker>
</div>
<div class="col-md-3 col-xs-6">
<q-select
v-model="round"
label="รอบการขึ้นเงินเดือน"
dense
outlined
map-options
option-label="name"
option-value="id"
:options="roundOptions"
lazy-rules
hide-bottom-space
bg-color="white"
@update:model-value="(report = ''), fetchReportPDF"
>
</q-select>
</div>
<div
class="col-md-3 col-xs-6"
v-if="employeeClass === 'officer'"
>
<q-select
v-model="group"
label="กลุ่ม"
dense
outlined
emit-value
map-options
option-label="name"
option-value="id"
:options="groupOptions"
lazy-rules
hide-bottom-space
bg-color="white"
@update:model-value="fetchReportPDF"
/>
</div>
</div>
<div class="row q-col-gutter-sm col-md-12">
<div class="col-md-4 col-xs-12">
<q-select
outlined
dense
v-model="report"
:options="reportOption"
label="รายงาน"
emit-value
map-options
option-label="name"
option-value="id"
class="bg-white"
@update:model-value="fetchReportPDF"
/>
</div>
</div>
</div>
</q-card>
</div>
</div>
</q-card>
<q-card flat bordered class="col-12" v-if="isRound">
<q-card-section :horizontal="$q.screen.gt.sm">
<q-card-section class="col-lg-3 col-md-4 col-xs-12 q-gutter-sm">
<div class="col">
<q-input dense outlined v-model="filterTree" label="ค้นหา">
<template v-slot:append>
<q-icon name="search" />
</template>
</q-input>
</div>
<div class="bg-white tree-container q-pa-xs">
<q-tree
dense
:nodes="node"
node-key="id"
label-key="labelName"
:filter="filterTree.trim()"
no-results-label="ไม่พบข้อมูลที่ค้นหา"
no-nodes-label="ไม่มีข้อมูล"
>
<template v-slot:default-header="prop">
<q-item
@click.stop="
onSelectedNode(prop.node.id, prop.node.orgRootName)
"
:active="nodeId === prop.node.id"
clickable
active-class="my-list-link text-primary text-weight-medium"
class="row col-12 items-center text-dark q-py-xs q-pl-sm rounded-borders my-list"
>
<div>
<div class="text-weight-medium">
{{ prop.node.orgRootName }}
</div>
<div class="text-weight-light text-grey-8">
{{
prop.node.orgRootCode == null
? null
: prop.node.orgRootCode
}}
{{
prop.node.orgRootShortName == null
? null
: prop.node.orgRootShortName
}}
</div>
</div>
</q-item>
</template>
</q-tree>
</div>
</q-card-section>
<q-separator :vertical="$q.screen.gt.xs" />
<q-card-section class="col-lg-9 col-md-8 col-xs-12 scroll">
<q-splitter
horizontal
style="
height: 63vh;
border: 1px solid rgb(210, 210, 210);
border-radius: 5px;
"
before-class="overflow-hidden disable"
separator-class="bg-white disabled"
>
<template v-slot:before>
<div class="q-px-sm">
<div class="row items-start items-center">
<div class="col">
<q-btn
padding="xs"
icon="mdi-chevron-left"
color="grey-2"
text-color="grey-5"
size="md"
class="my-auto"
@click="backPage"
:disable="page == 1"
/>
</div>
<div class="col-12 col-md-auto">
<div class="q-pa-md flex">
หนาท {{ page }} จาก {{ numOfPages }}
</div>
</div>
<div class="col text-right">
<q-btn
padding="xs"
icon="mdi-chevron-right"
color="grey-2"
text-color="grey-5"
size="md"
@click="nextPage"
:disable="page === numOfPages"
/>
</div>
</div>
</div>
</template>
<template v-slot:after>
<div class="q-pa-md">
<LoadView v-if="isLoadFilePdf" />
<VuePDF
v-else
ref="vuePDFRef"
:pdf="pdfSrc"
:page="page"
fit-parent
/>
</div>
</template>
<template v-slot:default>
<div class="q-pa-md">
<div class="row items-start items-center">
<div class="col">
<q-btn
padding="xs"
icon="mdi-chevron-left"
color="grey-2"
text-color="grey-5"
size="md"
class="my-auto"
@click="backPage"
:disable="page == 1"
/>
</div>
<div class="col-12 col-md-auto">
<div class="q-pa-md flex">
หนาท {{ page }} จาก {{ numOfPages }}
</div>
</div>
<div class="col text-right">
<q-btn
padding="xs"
icon="mdi-chevron-right"
color="grey-2"
text-color="grey-5"
size="md"
@click="nextPage"
:disable="page === numOfPages"
/>
</div>
</div>
</div>
</template>
</q-splitter>
</q-card-section>
</q-card-section>
</q-card>
<q-card flat bordered class="col-12" v-else>
<div class="q-pa-sm">
<q-banner inline-actions rounded class="bg-grey-1 text-center">
ไมอม
</q-banner>
</div>
</q-card>
</div>
</template>
<style scoped></style>
<style lang="scss" scope>
.q-item.hover-green:hover {
background-color: #d5f1ee57;
border-radius: 2px;
}
.q-item.hover-green {
padding: 10px;
}
.tree-container {
overflow: auto;
height: 58vh;
border: 1px solid #e6e6e7;
border-radius: 10px;
}
.my-list-link {
color: rgb(118, 168, 222);
border-radius: 5px;
background: #a3d3fb48 !important;
font-weight: 600;
border: 1px solid rgba(175, 185, 196, 0.217);
}
</style>