refactor: delete treeview

This commit is contained in:
Thanaphon Frappet 2024-10-10 13:22:50 +07:00
parent 2b021fad22
commit aff47fa13e

View file

@ -629,38 +629,6 @@ watch(() => pageState.currentTab, fetchQuotationList);
/>
</div>
</div>
(
<TreeView
v-if="quotationFormData.productServiceList"
class="full-width q-py-sm q-px-md"
:nodes="quotationProductTree(quotationFormData?.productServiceList)"
expandable
selectable
:selected-node="[]"
@select=""
@delete=""
:decoration="[
{
level: 0,
icon: 'mdi-server-outline',
bg: 'hsla(var(--orange-5-hsl)/0.1)',
fg: 'var(--orange-5)',
},
{
level: 1,
icon: 'mdi-briefcase-outline',
bg: 'hsla(var(--violet-11-hsl)/0.1)',
fg: 'var(--violet-11)',
},
{
level: 2,
icon: 'mdi-shopping-outline',
bg: 'hsla(var(--teal-10-hsl)/0.1)',
fg: 'var(--teal-10)',
},
]"
/>
)
</article>
<!-- SEC: footer content -->