refactor: delete sortble
This commit is contained in:
parent
f958714445
commit
2ba0b9c52f
1 changed files with 7 additions and 2 deletions
|
|
@ -48,7 +48,6 @@ const columns = [
|
||||||
align: 'center',
|
align: 'center',
|
||||||
label: 'orderNumber',
|
label: 'orderNumber',
|
||||||
field: 'branchNo',
|
field: 'branchNo',
|
||||||
sortable: true,
|
|
||||||
},
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
|
|
@ -1010,6 +1009,9 @@ watch(currentHq, () => {
|
||||||
v-for="col in props.cols"
|
v-for="col in props.cols"
|
||||||
:key="col.name"
|
:key="col.name"
|
||||||
:props="props"
|
:props="props"
|
||||||
|
:class="{
|
||||||
|
'q-pl-sm': col.label === 'orderNumber',
|
||||||
|
}"
|
||||||
>
|
>
|
||||||
{{ $t(col.label) }}
|
{{ $t(col.label) }}
|
||||||
</q-th>
|
</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 }}
|
{{ props.rowIndex + 1 }}
|
||||||
</q-td>
|
</q-td>
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue