From bed735aae42b6e0c75bf3fd63d9cd0996fba9355 Mon Sep 17 00:00:00 2001
From: zjj <3272660260@qq.com>
Date: 星期三, 21 五月 2025 14:21:30 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/devlop' into devlop

---
 rsf-admin/src/page/basicInfo/loc/LocList.jsx |   41 ++++++++++++++++-------------------------
 1 files changed, 16 insertions(+), 25 deletions(-)

diff --git a/rsf-admin/src/page/basicInfo/loc/LocList.jsx b/rsf-admin/src/page/basicInfo/loc/LocList.jsx
index c6a9228..ef686d0 100644
--- a/rsf-admin/src/page/basicInfo/loc/LocList.jsx
+++ b/rsf-admin/src/page/basicInfo/loc/LocList.jsx
@@ -47,9 +47,7 @@
 import BatchModal from './BatchModal';
 import SubzoneModal from './SubzoneModal';
 import PageDrawer from "../../components/PageDrawer";
-import MyField from "../../components/MyField";
 import { PAGE_DRAWER_WIDTH, OPERATE_MODE, DEFAULT_PAGE_SIZE } from '@/config/setting';
-import * as Common from '@/utils/common';
 import DashboardIcon from '@mui/icons-material/Dashboard';
 import EditIcon from '@mui/icons-material/Edit';
 import request from '@/utils/request';
@@ -68,26 +66,25 @@
     '& .column-name': {
     },
     '& .opt': {
-        width: 200
+        width: 180
     },
-    '& .RaDatagrid-headerCell': {
-        textAlign: 'left'
-    },
-    '& .RaDatagrid-rowCell': {
-        textAlign: 'left'
-    },
+    // '& .RaDatagrid-headerCell': {
+    //     textAlign: 'left'
+    // },
+    // '& .RaDatagrid-rowCell': {
+    //     textAlign: 'left'
+    // },
     '& .type .MuiTypography-root': {
         whiteSpace: 'nowrap',
         overflow: 'hidden',
         textOverflow: 'ellipsis',
         display: 'block',
-        width: '200px',
+        width: 'auto',
     },
 }));
 
 const filters = [
     <SearchInput source="condition" alwaysOn />,
-
     <ReferenceInput
         source="warehouseId"
         label="table.field.loc.warehouseId"
@@ -143,7 +140,6 @@
     const translate = useTranslate();
     const notify = useNotify();
     const refresh = useRefresh();
-
     const [createDialog, setCreateDialog] = useState(false);
     const [drawerVal, setDrawerVal] = useState(false);
     const [initDialog, setInitDialog] = useState(false);
@@ -173,7 +169,6 @@
                                 onClick={() => { setCreateDialog(true) }}>
                                 {translate('create.empty.button')}
                             </Button>
-
                             <Button
                                 variant="contained"
                                 color="primary"
@@ -240,17 +235,12 @@
                     <NumberField source="flagLabelMange" label="table.field.loc.flagLabelMange" />
                     <TextField source="locAttrs" label="table.field.loc.locAttrs" /> */}
                     <TextField source="useStatus$" label="table.field.loc.useStatus" />
-                    <ReferenceField source="updateBy" label="common.field.updateBy" reference="user" link={false} sortable={false}>
-                        <TextField source="nickname" />
-                    </ReferenceField>
+                    <TextField source="updateBy$" label="common.field.updateBy"  />
                     <DateField source="updateTime" label="common.field.updateTime" showTime align="left" />
-                    <ReferenceField source="createBy" label="common.field.createBy" align="left" reference="user" link={false} sortable={false}>
-                        <TextField source="nickname" />
-                    </ReferenceField>
+                    <TextField source="createBy$" label="common.field.createBy"  />
                     <DateField source="createTime" label="common.field.createTime" showTime align="left" />
                     <BooleanField source="statusBool" label="common.field.status" sortable={false} align="left" />
                     <TextField source="memo" label="common.field.memo" sortable={false} />
-
                     <WrapperField cellClassName="opt" label="common.field.opt">
                         <EditButton sx={{ padding: '1px', fontSize: '.75rem' }} />
                         {/* <DeleteButton sx={{ padding: '1px', fontSize: '.75rem' }} mutationMode={OPERATE_MODE} /> */}
@@ -258,6 +248,10 @@
                     </WrapperField>
 
                 </StyledDatagrid>
+                <InitModal
+                open={initDialog}
+                setOpen={setInitDialog}
+                />
             </List>
             <LocCreate
                 open={createDialog}
@@ -269,11 +263,8 @@
                 setDrawerVal={setDrawerVal}
             >
             </PageDrawer>
-
-            <InitModal
-                open={initDialog}
-                setOpen={setInitDialog}
-            />
+            
+            
         </Box>
     )
 }

--
Gitblit v1.9.1