Compare commits

...

3 commits

Author SHA1 Message Date
DESKTOP-1R2VSQH\Lenovo ThinkPad E490
3390a5be7a Merge branch 'develop' into dev
All checks were successful
Build & Deploy on Dev / build (push) Successful in 2m45s
2026-02-25 11:36:30 +07:00
DESKTOP-1R2VSQH\Lenovo ThinkPad E490
0c80012317 fix: text-red isCondition 2026-02-25 11:36:13 +07:00
249424d4a5 แก้ข้อความสถานะทุน 2026-02-25 11:05:45 +07:00
4 changed files with 7 additions and 6 deletions

View file

@ -717,8 +717,8 @@ onMounted(async () => {
:props="props"
@click="onClickSelectPos(props.row.id)"
:class="{
'text-red': props.row.isCondition === true,
'bg-blue-2': props.row.id === positionId,
'text-red': props.row.isCondition === true,
}"
>
<div v-if="col.name == 'no'">

View file

@ -685,8 +685,8 @@ onMounted(() => {
:props="props"
@click="onClickSelectPos(props.row.id)"
:class="{
'text-red': props.row.isCondition === true,
'bg-blue-2': props.row.id === positionId,
'text-red': props.row.isCondition === true,
}"
>
<div v-if="col.name == 'no'">

View file

@ -681,9 +681,10 @@ onBeforeMount(async () => {
:key="col.name"
:props="props"
@click="onClickSelectPos(props.row.id)"
:class="
props.row.id === positionId ? 'bg-blue-2' : ''
"
:class="{
'bg-blue-2': props.row.id === positionId,
'text-red': props.row.isCondition === true,
}"
>
<div v-if="col.name == 'no'">
{{ props.rowIndex + 1 }}

View file

@ -190,7 +190,7 @@ function onDetail(id: string) {
function conventStatus(val: string) {
switch (val) {
case "PENDING":
return "กำลังศึกษา";
return "อยู่ระหว่างศึกษา";
case "REPORTED":
return "รายงานตัวกลับเข้าปฏิบัติราชการแล้ว";
case "GRADUATE":