forked from opentiny/tiny-vue
298 lines
7.0 KiB
Vue
298 lines
7.0 KiB
Vue
<template>
|
|
<div>
|
|
<tiny-grid
|
|
:data="tableData"
|
|
ref="treeRef"
|
|
:tree-config="{ children: 'children' }"
|
|
:edit-config="{ trigger: 'click', mode: 'cell', showStatus: true }"
|
|
:select-config="{ labelField: 'index' }"
|
|
>
|
|
<template #toolbar>
|
|
<tiny-grid-toolbar class="customizedBox">
|
|
<template #buttons>
|
|
<tiny-button @click="insertEvent"> 新增 </tiny-button>
|
|
<tiny-button @click="removeEvent"> 移除选中 </tiny-button>
|
|
<tiny-button @click="getRemoveEvent"> 获取删除 </tiny-button>
|
|
<tiny-button @click="getUpdateEvent"> 获取修改 </tiny-button>
|
|
<tiny-button @click="clearTreeExpand"> 清空展开状态 </tiny-button>
|
|
</template>
|
|
</tiny-grid-toolbar>
|
|
</template>
|
|
<tiny-grid-column type="selection" width="100"></tiny-grid-column>
|
|
<tiny-grid-column type="index" width="80" tree-node></tiny-grid-column>
|
|
<tiny-grid-column field="name" title="公司名称"></tiny-grid-column>
|
|
|
|
<tiny-grid-column field="area" title="区域" :editor="{ component: 'input', autoselect: true }"></tiny-grid-column>
|
|
<tiny-grid-column
|
|
field="employees"
|
|
title="员工数"
|
|
:editor="{ component: 'input', autoselect: true }"
|
|
></tiny-grid-column>
|
|
</tiny-grid>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="jsx">
|
|
import { ref } from 'vue'
|
|
import {
|
|
Grid as TinyGrid,
|
|
GridColumn as TinyGridColumn,
|
|
Button as TinyButton,
|
|
GridToolbar as TinyGridToolbar,
|
|
Modal
|
|
} from '@opentiny/vue'
|
|
|
|
function canRemove(node, nodes) {
|
|
let flag = false
|
|
|
|
for (let i = 0; i < nodes.length; i++) {
|
|
flag = nodes[i] === node || (nodes[i].id && node.id && nodes[i].id === node.id)
|
|
if (flag) break
|
|
}
|
|
|
|
return flag
|
|
}
|
|
|
|
function pushIfNotNull(array, item) {
|
|
if (item !== null) array.push(item)
|
|
}
|
|
|
|
function copyCannotRemove(node, nodes) {
|
|
let copyNode
|
|
|
|
if (canRemove(node, nodes)) {
|
|
copyNode = null
|
|
} else {
|
|
if (Array.isArray(node.children)) {
|
|
let children = []
|
|
|
|
for (let i = 0; i < node.children.length; i++) {
|
|
pushIfNotNull(children, copyCannotRemove(node.children[i], nodes))
|
|
}
|
|
copyNode = Object.assign(Object.assign({}, node), {
|
|
id: node.id || undefined,
|
|
children
|
|
})
|
|
} else {
|
|
copyNode = Object.assign(Object.assign({}, node), {
|
|
id: node.id || undefined,
|
|
children: undefined
|
|
})
|
|
}
|
|
}
|
|
|
|
return copyNode
|
|
}
|
|
|
|
function copy(nodes1, nodes2) {
|
|
let res = []
|
|
|
|
for (let i = 0; i < nodes1.length; i++) {
|
|
pushIfNotNull(res, copyCannotRemove(nodes1[i], nodes2))
|
|
}
|
|
|
|
return res
|
|
}
|
|
|
|
const increaseId = ref(30)
|
|
|
|
const tableData = ref([
|
|
{
|
|
id: '1',
|
|
pid: '0',
|
|
name: 'GFD科技YX公司',
|
|
area: '华东区',
|
|
employees: '800',
|
|
children: [
|
|
{
|
|
id: '15',
|
|
pid: '1',
|
|
name: 'GFD科技股份有限子公司',
|
|
area: '华东区',
|
|
employees: '700'
|
|
}
|
|
]
|
|
},
|
|
{
|
|
id: '2',
|
|
pid: '0',
|
|
name: 'WWWW科技YX公司',
|
|
area: '华南区',
|
|
employees: '500',
|
|
children: [
|
|
{
|
|
id: '22',
|
|
pid: '2',
|
|
name: 'WWWW科技股份有限子公司',
|
|
area: '华南区',
|
|
employees: '720'
|
|
}
|
|
]
|
|
},
|
|
{
|
|
id: '4',
|
|
pid: '0',
|
|
name: 'TGBYX公司',
|
|
area: '华南区',
|
|
employees: '360',
|
|
children: [
|
|
{
|
|
id: '3',
|
|
pid: '4',
|
|
name: 'RFV有限责任公司',
|
|
area: '华南区',
|
|
employees: '300'
|
|
},
|
|
{
|
|
id: '5',
|
|
pid: '4',
|
|
name: 'YHN科技YX公司',
|
|
area: '华南区',
|
|
employees: '810',
|
|
children: [
|
|
{
|
|
id: '6',
|
|
pid: '5',
|
|
name: 'WSX科技YX公司',
|
|
area: '华南区',
|
|
employees: '800'
|
|
},
|
|
{
|
|
id: '9',
|
|
pid: '5',
|
|
name: 'UJM有限责任公司',
|
|
area: '华南区',
|
|
employees: '750'
|
|
}
|
|
]
|
|
}
|
|
]
|
|
},
|
|
{
|
|
id: '7',
|
|
pid: '0',
|
|
name: '康康物业YX公司',
|
|
area: '华南区',
|
|
employees: '400',
|
|
children: [
|
|
{
|
|
id: '8',
|
|
pid: '7',
|
|
name: '深圳市福德宝网络技术YX公司',
|
|
area: '华南区',
|
|
employees: '540'
|
|
},
|
|
{
|
|
id: '10',
|
|
pid: '7',
|
|
name: 'IK有限责任公司',
|
|
area: '华南区',
|
|
employees: '400',
|
|
children: [
|
|
{
|
|
id: '23',
|
|
pid: '10',
|
|
name: 'IK有限责任股份YX公司',
|
|
area: '华南区',
|
|
employees: '455'
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|
|
])
|
|
const removeList = ref([])
|
|
const treeRef = ref()
|
|
|
|
function insertEvent() {
|
|
let tree = treeRef.value
|
|
const row = {
|
|
name: '新数据',
|
|
isNew: true,
|
|
id: String(increaseId.value++),
|
|
children: [
|
|
{
|
|
id: String(increaseId.value++),
|
|
name: '新数据-child'
|
|
}
|
|
]
|
|
}
|
|
tree.createRow(row).then((newRow) => {
|
|
// 插入到第一行
|
|
tableData.value = [newRow, ...tableData.value]
|
|
let activeRow = tableData.value[0]
|
|
tree.refreshData().then(() => tree.setActiveRow(activeRow))
|
|
})
|
|
}
|
|
|
|
/**
|
|
* 删除 第一层数据
|
|
* @param data 源数据
|
|
* @param removeRecords 选中数据
|
|
*/
|
|
function deleteItemsByChecked(data, removeRecords) {
|
|
const targetIds = removeRecords.map((x) => x.id)
|
|
|
|
const idSet = new Set(targetIds) // 转换为集合以提高查找性能
|
|
|
|
for (let i = data.length - 1; i >= 0; i--) {
|
|
const node = data[i]
|
|
if (idSet.has(node.id)) {
|
|
data.splice(i, 1) // 删除当前节点
|
|
|
|
idSet.delete(node.id) // 处理完目标节点后从集合中删除对应的ID
|
|
|
|
if (idSet.size === 0) {
|
|
break // 如果所有目标节点都已处理完成,则结束遍历
|
|
}
|
|
} else if (node.children && node.children.length > 0) {
|
|
deleteChildItems(node.children, idSet) // 递归删除子节点
|
|
}
|
|
}
|
|
}
|
|
/**
|
|
* 删除 子集数据
|
|
* @param children 子集数据
|
|
* @param idSet 删除id集合
|
|
*/
|
|
function deleteChildItems(children, idSet) {
|
|
for (let i = children.length - 1; i >= 0; i--) {
|
|
const node = children[i]
|
|
|
|
if (idSet.has(node.id)) {
|
|
children.splice(i, 1) // 删除当前节点
|
|
|
|
idSet.delete(node.id) // 处理完目标节点后从集合中删除对应的ID
|
|
|
|
if (idSet.size === 0) {
|
|
break // 如果所有目标节点都已处理完成,则结束遍历
|
|
}
|
|
} else if (node.children && node.children.length > 0) {
|
|
deleteChildItems(node.children, idSet) // 递归删除子节点的子节点
|
|
}
|
|
}
|
|
}
|
|
function removeEvent() {
|
|
let tree = treeRef.value
|
|
let removeRecords = tree.getSelectRecords()
|
|
deleteItemsByChecked(tableData.value, removeRecords)
|
|
removeList.value = removeRecords.map((item) => ({ ...item }))
|
|
}
|
|
|
|
function getRemoveEvent() {
|
|
let removeRecords = removeList.value
|
|
|
|
Modal.alert(removeRecords.length)
|
|
}
|
|
|
|
function getUpdateEvent() {
|
|
let updateRecords = treeRef.value.getUpdateRecords()
|
|
|
|
Modal.alert(updateRecords.length)
|
|
}
|
|
|
|
function clearTreeExpand() {
|
|
treeRef.value.clearTreeExpand()
|
|
}
|
|
</script>
|