fix: สรรหา ปรับ pagin /โครงสร้าง ปิดดาวโหลดได้เเค่ root ปรับข้อความ
This commit is contained in:
parent
e4bdf45beb
commit
8263697759
8 changed files with 162 additions and 58 deletions
|
|
@ -64,6 +64,7 @@ const textTittleResult = ref<string>("");
|
|||
const rows = ref<ResponseRecruitPeriod[]>([]);
|
||||
const rowsData = ref<ResponseRecruitPeriod[]>([]);
|
||||
const initialPagination = ref<Pagination>({
|
||||
page: 0,
|
||||
rowsPerPage: 0,
|
||||
sortBy: "year",
|
||||
});
|
||||
|
|
@ -646,7 +647,7 @@ onMounted(async () => {
|
|||
<q-tooltip>นำเข้าไฟล์ผู้สมัครสอบ</q-tooltip>
|
||||
</q-btn>
|
||||
<div v-else>
|
||||
{{ col.value }}
|
||||
{{ col.value.toLocaleString() }}
|
||||
|
||||
<q-btn
|
||||
v-if="checkPermission($route)?.attrIsUpdate"
|
||||
|
|
@ -693,7 +694,7 @@ onMounted(async () => {
|
|||
<q-tooltip>นำเข้าไฟล์บัญชีรวมคะแนน</q-tooltip>
|
||||
</q-btn>
|
||||
<div v-else>
|
||||
{{ props.row.score.scoreCount }}
|
||||
{{ props.row.score.scoreCount.toLocaleString() }}
|
||||
<q-btn
|
||||
:disable="props.row.examCount == 0"
|
||||
flat
|
||||
|
|
@ -730,7 +731,7 @@ onMounted(async () => {
|
|||
<q-tooltip>นำเข้าไฟล์ผลการสอบ (บัญชีรายชื่อ)</q-tooltip>
|
||||
</q-btn>
|
||||
<div v-else>
|
||||
{{ props.row.score.resultCount }}
|
||||
{{ props.row.score.resultCount.toLocaleString() }}
|
||||
<q-btn
|
||||
v-if="checkPermission($route)?.attrIsUpdate"
|
||||
dense
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue