This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-11-28 15:32:56 +07:00
parent a7b3397f74
commit 6599f64e08

View file

@ -200,7 +200,7 @@ function getData() {
rateOldMin: item.salaryMin,
groupOld: item.salaryEmployeeMin.sort((a, b) => a - b),
rateMaxOld: item.salary,
groupRateHigh: item.group,
groupRateHigh: `กลุ่มที่ ${item.group}`,
rateHighMax: item.salaryMax,
reson: item.details,
}));
@ -270,7 +270,6 @@ function onClickDelete(id: string) {
*/
function filterSelector(val: string, update: Function) {
update(() => {
posType.value = null;
posTypeOp.value = posTypeOpMain.value.filter(
(v: DataOption) => v.name.toLowerCase().indexOf(val) > -1
);
@ -375,7 +374,6 @@ onMounted(async () => {
map-options
:options="columns"
option-value="name"
style="min-width: 140px"
class="col-xs-12 col-sm-3 col-md-2 q-ml-sm"
/>
@ -390,7 +388,7 @@ onMounted(async () => {
row-key="name"
class="custom-header-table"
v-model:pagination="pagination"
:rows-per-page-options="[20, 50, 100, 200]"
:rows-per-page-options="[10, 20, 50, 100]"
:visible-columns="visibleColumns"
@update:pagination="updatePageSize"
>
@ -463,7 +461,8 @@ onMounted(async () => {
</div>
<div v-else-if="col.name == 'groupOld'">
<span v-for="(item, index) in col.value">
{{ item }}{{ index + 1 == col.value.length ? "" : "," }}
{{ item ? `กลุ่มที่ ${item}` : ""
}}{{ index + 1 == col.value.length ? "" : "," }}
</span>
</div>
<div v-else>{{ col.value != "" ? col.value : "-" }}</div>