fix: columns not show action
This commit is contained in:
parent
3c31ff8f79
commit
ff7d516519
1 changed files with 6 additions and 4 deletions
|
|
@ -59,10 +59,12 @@ const { state: customerFormState, currentFormData: customerFormData } =
|
|||
const { currentMyBranch } = storeToRefs(userBranch);
|
||||
|
||||
const fieldSelectedOption = computed(() => {
|
||||
return columnQuotation.map((v) => ({
|
||||
label: v.label,
|
||||
value: v.name,
|
||||
}));
|
||||
return columnQuotation
|
||||
.filter((v) => v.name !== 'action')
|
||||
.map((v) => ({
|
||||
label: v.label,
|
||||
value: v.name,
|
||||
}));
|
||||
});
|
||||
const special = ref(false);
|
||||
const branchId = ref('');
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue