ปรับระบบสรรหา ประวัติการทำงาน รวมระยะเวลา

This commit is contained in:
Tanyalak 2023-10-12 11:22:22 +07:00
parent 26ff227bdc
commit 6707bfef8c

View file

@ -34,7 +34,7 @@
</div> </div>
</q-td> </q-td>
<q-td <q-td
auto-width style="width:5% !important;"
v-if="status == 'checkRegister' || status == 'payment'" v-if="status == 'checkRegister' || status == 'payment'"
> >
<q-btn <q-btn
@ -50,11 +50,12 @@
</q-tr> </q-tr>
</template> </template>
<template #bottom="props"> <template #bottom="props">
<div :props="props" class="row col-11 justify-end"> <div style="width:75% !important;"/>
<span class="text-weight-medium text-subtitle2" <div :props="props" style="width:25% !important;padding-left: 12px;">
>รวมระยะเวลา : <span class="q-pl-sm">{{ total }}</span></span <span class="text-weight-medium text-subtitle2 q-py-sm"
> >รวมระยะเวลา : <span class="q-pl-sm">{{ total }}</span></span
</div> >
</div>
</template> </template>
</Table> </Table>
</q-form> </q-form>
@ -353,7 +354,7 @@ const columns = ref<QTableProps["columns"]>([
sortable: true, sortable: true,
field: "position", field: "position",
headerStyle: "font-size: 14px", headerStyle: "font-size: 14px",
style: "font-size: 14px", style: "font-size: 14px; width:25%;",
sort: (a: string, b: string) => sort: (a: string, b: string) =>
a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }), a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }),
}, },
@ -364,7 +365,7 @@ const columns = ref<QTableProps["columns"]>([
sortable: true, sortable: true,
field: "type", field: "type",
headerStyle: "font-size: 14px", headerStyle: "font-size: 14px",
style: "font-size: 14px", style: "font-size: 14px; width:20%;",
sort: (a: string, b: string) => sort: (a: string, b: string) =>
a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }), a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }),
}, },
@ -408,7 +409,7 @@ const columns = ref<QTableProps["columns"]>([
sortable: true, sortable: true,
field: "startDate", field: "startDate",
headerStyle: "font-size: 14px", headerStyle: "font-size: 14px",
style: "font-size: 14px", style: "font-size: 14px; width:15%;",
sort: (a: string, b: string) => sort: (a: string, b: string) =>
a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }), a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }),
}, },
@ -419,7 +420,7 @@ const columns = ref<QTableProps["columns"]>([
sortable: true, sortable: true,
field: "endDate", field: "endDate",
headerStyle: "font-size: 14px", headerStyle: "font-size: 14px",
style: "font-size: 14px", style: "font-size: 14px; width:15%;",
sort: (a: string, b: string) => sort: (a: string, b: string) =>
a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }), a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }),
}, },
@ -430,7 +431,7 @@ const columns = ref<QTableProps["columns"]>([
sortable: true, sortable: true,
field: "rangeDate", field: "rangeDate",
headerStyle: "font-size: 14px", headerStyle: "font-size: 14px",
style: "font-size: 14px", style: "font-size: 14px; width:20%;",
sort: (a: string, b: string) => sort: (a: string, b: string) =>
a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }), a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }),
}, },