Merge branch 'develop' into dev
All checks were successful
Build & Deploy on Dev / build (push) Successful in 2m45s
All checks were successful
Build & Deploy on Dev / build (push) Successful in 2m45s
This commit is contained in:
commit
3390a5be7a
4 changed files with 7 additions and 6 deletions
|
|
@ -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'">
|
||||
|
|
|
|||
|
|
@ -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'">
|
||||
|
|
|
|||
|
|
@ -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 }}
|
||||
|
|
|
|||
|
|
@ -190,7 +190,7 @@ function onDetail(id: string) {
|
|||
function conventStatus(val: string) {
|
||||
switch (val) {
|
||||
case "PENDING":
|
||||
return "กำลังศึกษา";
|
||||
return "อยู่ระหว่างศึกษา";
|
||||
case "REPORTED":
|
||||
return "รายงานตัวกลับเข้าปฏิบัติราชการแล้ว";
|
||||
case "GRADUATE":
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue