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 { currentMyBranch } = storeToRefs(userBranch);
|
||||||
|
|
||||||
const fieldSelectedOption = computed(() => {
|
const fieldSelectedOption = computed(() => {
|
||||||
return columnQuotation.map((v) => ({
|
return columnQuotation
|
||||||
label: v.label,
|
.filter((v) => v.name !== 'action')
|
||||||
value: v.name,
|
.map((v) => ({
|
||||||
}));
|
label: v.label,
|
||||||
|
value: v.name,
|
||||||
|
}));
|
||||||
});
|
});
|
||||||
const special = ref(false);
|
const special = ref(false);
|
||||||
const branchId = ref('');
|
const branchId = ref('');
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue