From 8306e37c038e5b7c853462863ab8240f266405f3 Mon Sep 17 00:00:00 2001 From: luxiaotao1123 <t1341870251@163.com> Date: 星期五, 13 九月 2024 14:12:32 +0800 Subject: [PATCH] # --- zy-acs-flow/src/page/code/CodeList.jsx | 8 +++++++- 1 files changed, 7 insertions(+), 1 deletions(-) diff --git a/zy-acs-flow/src/page/code/CodeList.jsx b/zy-acs-flow/src/page/code/CodeList.jsx index 2e236b5..cc4253d 100644 --- a/zy-acs-flow/src/page/code/CodeList.jsx +++ b/zy-acs-flow/src/page/code/CodeList.jsx @@ -122,7 +122,7 @@ rowClick={(id, resource, record) => false} expand={() => <CodePanel />} expandSingle={true} - omit={['id', 'createTime', 'memo']} + omit={['id', 'createTime', 'createBy', 'memo']} > <NumberField source="id" /> <TextField source="uuid" label="table.field.code.uuid" /> @@ -133,7 +133,13 @@ <TextField source="scale" label="table.field.code.scale" /> <DateField source="updateTime" label="common.field.updateTime" showTime /> + <ReferenceField source="updateBy" label="common.field.updateBy" reference="user" link={false} sortable={false}> + <TextField source="nickname" /> + </ReferenceField> <DateField source="createTime" label="common.field.createTime" showTime /> + <ReferenceField source="createBy" label="common.field.createBy" reference="user" link={false} sortable={false}> + <TextField source="nickname" /> + </ReferenceField> <BooleanField source="statusBool" label="common.field.status" sortable={false} /> <TextField source="memo" label="common.field.memo" sortable={false} /> <WrapperField cellClassName="opt" label="common.field.opt"> -- Gitblit v1.9.1