绿植管理

This commit is contained in:
FLL
2025-07-02 17:56:04 +08:00
parent 44b91fc587
commit 4b3d075266
8 changed files with 165 additions and 22 deletions

View File

@@ -22,6 +22,15 @@ export const querySchema: FormSchemaGetter = () => [
export const columns: VxeGridProps['columns'] = [
{ type: 'checkbox', width: 60 },
{
title: '序号',
field: 'id',
slots: {
default: ({ rowIndex }) => {
return (rowIndex + 1).toString();
},
},
},
{
title: '养护名称',
field: 'maintainName',