Compare commits
No commits in common. "3390a5be7a64f5aa9282e52333946005553aa792" and "cbc477a2feebf54759d039d3c27aca3fa5d94e54" have entirely different histories.
3390a5be7a
...
cbc477a2fe
4 changed files with 6 additions and 7 deletions
|
|
@ -717,8 +717,8 @@ onMounted(async () => {
|
|||
:props="props"
|
||||
@click="onClickSelectPos(props.row.id)"
|
||||
:class="{
|
||||
'bg-blue-2': props.row.id === positionId,
|
||||
'text-red': props.row.isCondition === true,
|
||||
'bg-blue-2': props.row.id === positionId,
|
||||
}"
|
||||
>
|
||||
<div v-if="col.name == 'no'">
|
||||
|
|
|
|||
|
|
@ -685,8 +685,8 @@ onMounted(() => {
|
|||
:props="props"
|
||||
@click="onClickSelectPos(props.row.id)"
|
||||
:class="{
|
||||
'bg-blue-2': props.row.id === positionId,
|
||||
'text-red': props.row.isCondition === true,
|
||||
'bg-blue-2': props.row.id === positionId,
|
||||
}"
|
||||
>
|
||||
<div v-if="col.name == 'no'">
|
||||
|
|
|
|||
|
|
@ -681,10 +681,9 @@ onBeforeMount(async () => {
|
|||
:key="col.name"
|
||||
:props="props"
|
||||
@click="onClickSelectPos(props.row.id)"
|
||||
:class="{
|
||||
'bg-blue-2': props.row.id === positionId,
|
||||
'text-red': props.row.isCondition === true,
|
||||
}"
|
||||
:class="
|
||||
props.row.id === positionId ? 'bg-blue-2' : ''
|
||||
"
|
||||
>
|
||||
<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