แก้ไขคำผิด

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-05-23 13:10:14 +07:00
parent d226498322
commit e3365235c6
9 changed files with 68 additions and 52 deletions

View file

@ -33,6 +33,8 @@ const { showLoader, hideLoader, messageError, dialogMessageNotify } =
const node = ref<any>([]);
const expanded = ref<string[]>([]);
const expandedDialog = ref<string[]>([]);
const filter = ref<string>("");
const filterMain = ref<string>("");
const splitterModel = ref<number>(60);
@ -553,7 +555,7 @@ onMounted(() => {
:nodes="node"
node-key="orgTreeName"
label-key="labelName"
v-model:expanded="expanded"
v-model:expanded="expandedDialog"
:filter="filter"
no-results-label="ไม่พบข้อมูลที่ค้นหา"
no-nodes-label="ไม่มีข้อมูล"

View file

@ -184,7 +184,7 @@ function onDownload() {
.get(config.API.developmentReportScholarship())
.then((res) => {
const dataList = res.data.result;
genReportXLSX(dataList, "รายการข้าราชการที่ได้รับทุนการศึกษา/ฝึกอบรม");
genReportXLSX(dataList, "รายการข้าราชการที่ได้รับทุนการศึกษา/ฝึกอบรม");
})
.catch((e) => {
messageError($q, e);