#closed #1326 เพิ่มค้นหาจาก ระยะเวลาดำรงตำแหน่ง (บริหาร) ปัจจุบัน และแสดงคอลัมน์เพิ่ม
This commit is contained in:
parent
6bde04376f
commit
a77f006102
1 changed files with 18 additions and 0 deletions
|
|
@ -360,6 +360,17 @@ const columns = computed<QTableProps["columns"]>(() => {
|
|||
sort: (a: string, b: string) =>
|
||||
a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }),
|
||||
},
|
||||
{
|
||||
name: "posExecutive",
|
||||
align: "left",
|
||||
label: "ระยะเวลาดำรงตำแหน่ง (บริหาร) ปัจจุบัน",
|
||||
sortable: true,
|
||||
field: "posExecutive",
|
||||
headerStyle: "font-size: 14px",
|
||||
style: "font-size: 14px",
|
||||
sort: (a: string, b: string) =>
|
||||
a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }),
|
||||
},
|
||||
];
|
||||
});
|
||||
|
||||
|
|
@ -1539,6 +1550,13 @@ watch(
|
|||
size="xs"
|
||||
class="text-grey-8"
|
||||
/>
|
||||
<q-radio
|
||||
v-model="typeTerm"
|
||||
val="tenureType"
|
||||
label="ระยะเวลาดำรงตำแหน่ง (บริหาร) ปัจจุบัน"
|
||||
size="xs"
|
||||
class="text-grey-8"
|
||||
/>
|
||||
</div>
|
||||
<div class="q-pa-md" v-if="typeTerm">
|
||||
<q-range
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue