From 49f8eeef1dfbc4ba1eb3a4cc413e4a78eba0357c Mon Sep 17 00:00:00 2001
From: zhou zhou <3272660260@qq.com>
Date: 星期六, 07 二月 2026 09:47:54 +0800
Subject: [PATCH] #取消页面缓存和更新页面组件
---
rsf-admin/src/page/basicInfo/loc/LocList.jsx | 44 +++++++++++++++++---------------------------
1 files changed, 17 insertions(+), 27 deletions(-)
diff --git a/rsf-admin/src/page/basicInfo/loc/LocList.jsx b/rsf-admin/src/page/basicInfo/loc/LocList.jsx
index 79c6c7d..5e57c80 100644
--- a/rsf-admin/src/page/basicInfo/loc/LocList.jsx
+++ b/rsf-admin/src/page/basicInfo/loc/LocList.jsx
@@ -5,7 +5,7 @@
DatagridConfigurable,
SearchInput,
TopToolbar,
- SelectColumnsButton,
+ ColumnsButton,
EditButton,
FilterButton,
CreateButton,
@@ -55,6 +55,7 @@
import LocCreate from "./LocCreate";
import BindModal from "./BindModal";
import InitModal from "./InitModal";
+import StickyDataTable from "@/page/components/StickyDataTable";
const StyledDatagrid = styled(DatagridConfigurable)(({ theme }) => ({
'& .css-1vooibu-MuiSvgIcon-root': {
@@ -158,7 +159,11 @@
]
return (
- <Box display="flex">
+ <Box display="flex" sx={{
+ '& .MuiTableCell-root': {
+ whiteSpace: 'nowrap',
+ }
+ }}>
<List
sx={{
flexGrow: 1,
@@ -202,16 +207,17 @@
<FilterButton />
<InitButton />
<MyCreateButton onClick={() => { setCreateDialog(true) }} />
- <SelectColumnsButton preferenceKey='loc' />
+ <ColumnsButton storeKey='loc' />
<MyExportButton />
</TopToolbar>
)}
perPage={DEFAULT_PAGE_SIZE}
aside={<LocListAside />}
>
- <StyledDatagrid
- preferenceKey='loc'
+ <StickyDataTable
+ storeKey='loc'
align="left"
+ stickyRight={['opt']}
bulkActionButtons={
<>
<BatchWateButton />
@@ -224,45 +230,29 @@
</>
}
rowClick={() => false}
- omit={['id', 'createTime', 'createBy', 'memo', 'updateTime', 'updateBy', 'length', 'width', 'height', 'statusBool', 'updateBy$', 'createBy$']}
+ hiddenColumns={['id', 'createTime', 'createBy', 'memo', 'updateTime', 'updateBy', 'length', 'width', 'height', 'statusBool', 'updateBy$', 'createBy$']}
>
<NumberField source="id" />
<TextField source="code" label="table.field.loc.code" />
<NumberField source="warehouseId$" label="table.field.loc.warehouseId" />
<NumberField source="areaId$" label="table.field.loc.areaId" />
<TextField source="typeIds$" label="table.field.loc.type" cellClassName="type" />
- {/* <TextField source="name" label="table.field.loc.name" /> */}
- {/* <NumberField source="flagLogic" label="table.field.loc.flagLogic" />
- <TextField source="fucAtrrs" label="table.field.loc.fucAtrrs" />
- */}
- {/* <TextField source="unit" label="table.field.loc.unit" /> */}
- {/* <TextField source="length" label="table.field.loc.length" />
- <TextField source="width" label="table.field.loc.width" />
- <TextField source="height" label="table.field.loc.height" /> */}
+
<NumberField source="row" label="table.field.loc.row" />
<NumberField source="col" label="table.field.loc.col" />
<NumberField source="lev" label="table.field.loc.lev" />
<NumberField source="channel" label="table.field.loc.channel" />
- {/* <NumberField source="channel" label="table.field.loc.channel" />
- <NumberField source="maxParts" label="table.field.loc.maxParts" />
- <NumberField source="maxPack" label="table.field.loc.maxPack" />
- <NumberField source="flagLabelMange" label="table.field.loc.flagLabelMange" />
- <TextField source="locAttrs" label="table.field.loc.locAttrs" /> */}
+
<TextField source="useStatus$" label="table.field.loc.useStatus" />
<TextField source="barcode" label="table.field.loc.barcode" />
- {/* <TextField source="updateBy$" label="common.field.updateBy" />
- <DateField source="updateTime" label="common.field.updateTime" showTime align="left" />
- <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">
+ <WrapperField source="opt" cellClassName="opt" label="common.field.opt">
<EditButton sx={{ padding: '1px', fontSize: '.75rem' }} />
- {/* <DeleteButton sx={{ padding: '1px', fontSize: '.75rem' }} mutationMode={OPERATE_MODE} /> */}
<EnableButton />
</WrapperField>
- </StyledDatagrid>
+ </StickyDataTable>
<InitModal
open={initDialog}
setOpen={setInitDialog}
--
Gitblit v1.9.1