This commit is contained in:
FLL
2025-08-25 16:17:29 +08:00
parent e88b8b41d8
commit cc24027880
4 changed files with 130 additions and 14 deletions

View File

@@ -1,5 +1,6 @@
import type { FormSchemaGetter } from '#/adapter/form';
import type { VxeGridProps } from '#/adapter/vxe-table';
import {renderDict} from "#/utils/render";
export const querySchema: FormSchemaGetter = () => [
{
@@ -87,6 +88,11 @@ export const columns: VxeGridProps['columns'] = [
{
title: '事由',
field: 'visitingReason',
slots: {
default: ({ row }) => {
return renderDict(row.visitingReason, 'reason_for_visit');
},
},
},
{
title: '拜访时间',