แก้ไข

This commit is contained in:
Warunee Tamkoo 2024-01-12 14:11:11 +07:00
parent ada9644df7
commit 457951cc39

View file

@ -156,7 +156,7 @@ const label = computed(() => {
if (labelval.length !== 0) {
return labelval.length <= 2
? `${labelval.slice(0, 2).join(", ")}`
: `${labelval.slice(0, 2).join(", ")} + ,(${labelval.length - 2})`;
: `${labelval.slice(0, 2).join(", ")}, อื่นๆ (${labelval.length - 2})`;
} else return "";
});
@ -196,7 +196,7 @@ onMounted(async () => {
:options="options"
option-value="val"
label="ค้นหาสถานะ"
style="width: 28vw"
style="width: 35vw"
@update:model-value="fetchEvaluteList"
use-input
@filter="(inputValue:any,doneFn:Function) => filterOption(inputValue, doneFn) "