添加 转树形表格 插件

This commit is contained in:
神仙都没用 2025-03-13 15:08:43 +08:00
parent 334428e5cf
commit 85e1d826d3
4 changed files with 92 additions and 3 deletions

View File

@ -2,7 +2,7 @@
<div class="scope">
<div class="h">
<el-tag size="small" effect="dark" disable-transitions>required</el-tag>
<span>必填项配置</span>
<span>必填项配置动态设置</span>
</div>
<div class="c">
@ -71,6 +71,7 @@ function open() {
name: 'el-switch',
props: {
onChange(val) {
//
Form.value.setData('nickname', { required: val });
//

View File

@ -1,7 +1,7 @@
<template>
<div class="scope">
<div class="h">
<el-tag size="small" effect="dark" disable-transitions>row-edit</el-tag>
<el-tag size="small" effect="dark" disable-transitions>rowEdit</el-tag>
<span>行编辑</span>
</div>

View File

@ -0,0 +1,87 @@
<template>
<div class="scope">
<div class="h">
<el-tag size="small" effect="dark" disable-transitions>toTree</el-tag>
<span>转树形表格</span>
</div>
<div class="c">
<el-button @click="open">预览</el-button>
<demo-code :files="['table/plugin/to-tree.vue']" />
<!-- 自定义表格组件 -->
<cl-dialog v-model="visible" title="转树形表格" width="80%">
<cl-crud ref="Crud">
<cl-row>
<cl-table ref="Table" />
</cl-row>
<cl-row>
<cl-flex1 />
<cl-pagination />
</cl-row>
</cl-crud>
</cl-dialog>
</div>
<div class="f">
<span class="date">2025-03-13</span>
</div>
</div>
</template>
<script setup lang="ts">
import { useCrud, useTable } from '@cool-vue/crud';
import { ref } from 'vue';
import { useCool } from '/@/cool';
import { Plugins } from '/#/crud';
const { service } = useCool();
// cl-crud
const Crud = useCrud(
{
// parentId
service: service.base.sys.menu
},
app => {
app.refresh();
}
);
// cl-table
const Table = useTable({
autoHeight: false,
contextMenu: ['refresh'],
columns: [
{
label: '节点名称',
prop: 'name',
minWidth: 140,
align: 'left',
headerAlign: 'center'
},
{
label: '路由',
prop: 'router',
minWidth: 140
},
{
label: '创建时间',
prop: 'createTime',
minWidth: 170,
sortable: 'desc'
}
],
//
plugins: [Plugins.Table.toTree()]
});
const visible = ref(false);
function open() {
visible.value = true;
}
</script>

View File

@ -82,6 +82,7 @@ import TableColumnCustom from './components/table/column-custom.vue';
import TableComponent from './components/table/component/index.vue';
import TablePluginBase from './components/table/plugin/base.vue';
import TablePluginRowEdit from './components/table/plugin/row-edit.vue';
import TablePluginToTree from './components/table/plugin/to-tree.vue';
import UpsertBase from './components/upsert/base.vue';
import UpsertEvent from './components/upsert/event.vue';
@ -145,7 +146,7 @@ const list = [
},
{
label: '插件',
children: [TablePluginBase, TablePluginRowEdit]
children: [TablePluginBase, TablePluginRowEdit, TablePluginToTree]
}
]
},