refactor: delete sortble

This commit is contained in:
Net 2024-08-07 11:30:01 +07:00
parent f958714445
commit 2ba0b9c52f

View file

@ -48,7 +48,6 @@ const columns = [
align: 'center',
label: 'orderNumber',
field: 'branchNo',
sortable: true,
},
{
@ -1010,6 +1009,9 @@ watch(currentHq, () => {
v-for="col in props.cols"
:key="col.name"
:props="props"
:class="{
'q-pl-sm': col.label === 'orderNumber',
}"
>
{{ $t(col.label) }}
</q-th>
@ -1046,7 +1048,10 @@ watch(currentHq, () => {
}
"
>
<q-td v-if="fieldSelected.includes('branchLabelNo')">
<q-td
class="text-center"
v-if="fieldSelected.includes('branchLabelNo')"
>
{{ props.rowIndex + 1 }}
</q-td>