From fa924875ed3f2a8601ce04b7a65e53bc60b81091 Mon Sep 17 00:00:00 2001
From: lsh <lsh@163.com>
Date: 星期五, 26 十二月 2025 13:02:08 +0800
Subject: [PATCH] *

---
 rsf-admin/src/page/basicInfo/warehouse/WarehouseEdit.jsx |   34 ++++++++++++++++++----------------
 1 files changed, 18 insertions(+), 16 deletions(-)

diff --git a/rsf-admin/src/page/basicInfo/warehouse/WarehouseEdit.jsx b/rsf-admin/src/page/basicInfo/warehouse/WarehouseEdit.jsx
index b8d67b3..292d1a1 100644
--- a/rsf-admin/src/page/basicInfo/warehouse/WarehouseEdit.jsx
+++ b/rsf-admin/src/page/basicInfo/warehouse/WarehouseEdit.jsx
@@ -127,23 +127,25 @@
                                 source="height"
                             />
                         </Stack>
+                        <Stack direction='row' gap={2}>
+                            <SelectInput
+                                label="common.field.status"
+                                source="status"
+                                choices={[
+                                    { id: '1', name: 'common.enums.statusTrue' },
+                                    { id: '0', name: 'common.enums.statusFalse' },
+                                ]}
+                                resettable
+                            />
+                            <TextInput
+                                label="common.field.memo"
+                                source="memo"
+                                validate={[required()]}
+                                parse={v => v}
+                            />
+                        </Stack>
                     </Grid>
-                    <Grid item xs={12} md={4}>
-                        <Typography variant="h6" gutterBottom>
-                            {translate('common.edit.title.common')}
-                        </Typography>
-                        <StatusSelectInput />
-                        <Box mt="2em" />
-                        <TextInput
-                            label="common.field.memo"
-                            source="memo"
-                            parse={v => v}
-                            fullWidth
-                            multiline
-                            minRows={2}
-                            autoFocus
-                        />
-                    </Grid>
+                    
                 </Grid>
             </SimpleForm>
         </Edit >

--
Gitblit v1.9.1