fix: layout
This commit is contained in:
parent
b292e00380
commit
fe3c526252
2 changed files with 8 additions and 15 deletions
|
|
@ -46,7 +46,7 @@ const groupList = ref<
|
|||
title: string;
|
||||
product: QuotationPayload['productServiceList'][number][];
|
||||
}[]
|
||||
>([]);
|
||||
>([{ title: '', product: [] }]);
|
||||
|
||||
const finalDiscount = defineModel<number>('finalDiscount', { default: 0 });
|
||||
|
||||
|
|
@ -183,7 +183,6 @@ function openEmployeeTable(title: string, index: number) {
|
|||
}
|
||||
|
||||
function groupByServiceId() {
|
||||
console.log(rows.value);
|
||||
const groupedItems: {
|
||||
title: string;
|
||||
product: QuotationPayload['productServiceList'][number][];
|
||||
|
|
@ -247,7 +246,6 @@ function groupByServiceId() {
|
|||
}
|
||||
|
||||
groupList.value = groupedItems;
|
||||
console.log(groupedItems);
|
||||
}
|
||||
|
||||
watch(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue