ปรัย UI โครงสร้าง
This commit is contained in:
parent
533ed31bc8
commit
33f887f792
4 changed files with 143 additions and 39 deletions
|
|
@ -149,9 +149,6 @@ function deleteNode(treeNode: any, organizationId: any): boolean {
|
|||
// console.log("tttttttttttttt", treeNode.orgTreeId, organizationId);
|
||||
|
||||
if (treeNode.orgTreeId === organizationId) {
|
||||
console.log(treeNode);
|
||||
|
||||
// ลบ Node โดยการไม่ส่งผลลบ Node ทั้งหมดภายใต้
|
||||
treeNode.children = [];
|
||||
|
||||
breakLoop.value = true;
|
||||
|
|
@ -351,6 +348,45 @@ onMounted(async () => {});
|
|||
</q-list>
|
||||
</q-menu>
|
||||
</q-btn>
|
||||
|
||||
<q-btn
|
||||
v-else
|
||||
flat
|
||||
dense
|
||||
icon="mdi-dots-vertical"
|
||||
class="q-pa-none q-ml-xs"
|
||||
color="grey-13"
|
||||
>
|
||||
<q-menu>
|
||||
<q-list
|
||||
dense
|
||||
v-for="(item, index) in listAdd.slice(5, 6)"
|
||||
:key="index"
|
||||
style="min-width: 100px"
|
||||
>
|
||||
<q-item
|
||||
clickable
|
||||
v-close-popup
|
||||
@click="
|
||||
item.type === 'EDIT'
|
||||
? onClickEdit(prop.node)
|
||||
: item.type === 'ADD'
|
||||
? onClickAgency(prop.node.orgLevel + 1, prop.node)
|
||||
: item.type === 'DETAIL'
|
||||
? onClickDetail(prop.node.orgTreeId, prop.node.orgLevel)
|
||||
: item.type === 'DEL'
|
||||
? onClickDel(prop.node.orgLevel, prop.node.orgTreeId)
|
||||
: null
|
||||
"
|
||||
>
|
||||
<q-item-section avatar>
|
||||
<q-icon :color="item.color" :name="item.icon" />
|
||||
</q-item-section>
|
||||
<q-item-section>{{ item.label }}</q-item-section>
|
||||
</q-item>
|
||||
</q-list>
|
||||
</q-menu>
|
||||
</q-btn>
|
||||
</template>
|
||||
|
||||
<template v-slot:default-body="prop">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue