From ff31d592924958958c21fdef1975d499586d964f Mon Sep 17 00:00:00 2001
From: skyouc <creaycat@gmail.com>
Date: 星期五, 26 十二月 2025 17:41:43 +0800
Subject: [PATCH] BUG修复

---
 rsf-admin/src/page/basicInfo/basStation/BasStationCreate.jsx |  109 ++++++++++++++++++++++++++++++------------------------
 1 files changed, 60 insertions(+), 49 deletions(-)

diff --git a/rsf-admin/src/page/basicInfo/basStation/BasStationCreate.jsx b/rsf-admin/src/page/basicInfo/basStation/BasStationCreate.jsx
index 1c36402..be2b2a8 100644
--- a/rsf-admin/src/page/basicInfo/basStation/BasStationCreate.jsx
+++ b/rsf-admin/src/page/basicInfo/basStation/BasStationCreate.jsx
@@ -32,13 +32,14 @@
 import StatusSelectInput from "../../components/StatusSelectInput";
 import MemoInput from "../../components/MemoInput";
 import DictionarySelect from "../../components/DictionarySelect";
+import DictionaryArraySelect from "../../components/DictionaryArraySelect";
 
 const BasStationCreate = (props) => {
     const { open, setOpen } = props;
 
     const translate = useTranslate();
     const notify = useNotify();
-
+    const dicts = JSON.parse(localStorage.getItem('sys_dicts'))?.filter(dict => (dict.dictTypeCode == 'sys_station_type')) || [];
     const handleClose = (event, reason) => {
         if (reason !== "backdropClick") {
             setOpen(false);
@@ -96,6 +97,16 @@
                                     />
                                 </Grid>
                                 <Grid item xs={6} display="flex" gap={1}>
+                                    <AutocompleteInput
+                                        choices={dicts}
+                                        optionText="label"
+                                        label="table.field.basStation.type"
+                                        source="type"
+                                        optionValue="value"
+                                        parse={v => v}
+                                        validate={[required()]} />
+                                </Grid>
+                                <Grid item xs={6} display="flex" gap={1}>
                                     <SelectInput
                                         label="table.field.basStation.inAble"
                                         source="inAble"
@@ -128,67 +139,67 @@
                                 </Grid>
                                 <Grid item xs={6} display="flex" gap={1}>
                                     <ReferenceInput source="area" reference="warehouseAreas">
-                                        <SelectInput 
+                                        <SelectInput
                                             label="table.field.basStation.area"
                                             optionText="name"
                                             optionValue="id"
-                                            fullWidth  
-                                            validate={[required()]}     
+                                            fullWidth
+                                            validate={[required()]}
                                         />
                                     </ReferenceInput>
                                 </Grid>
                                 <Grid item xs={6} display="flex" gap={1}>
-                                <SelectInput
-                                    label="table.field.basStation.isCrossZone"
-                                    source="isCrossZone"
-                                    choices={[
-                                        { id: 0, name: '鍚�' },
-                                        { id: 1, name: '鏄�' },
-                                    ]}
-                                    validate={[required()]}
-                            />
+                                    <SelectInput
+                                        label="table.field.basStation.isCrossZone"
+                                        source="isCrossZone"
+                                        choices={[
+                                            { id: 0, name: '鍚�' },
+                                            { id: 1, name: '鏄�' },
+                                        ]}
+                                        validate={[required()]}
+                                    />
                                 </Grid>
                                 <Grid item xs={6} display="flex" gap={1}>
-                                <ReferenceArrayInput source="areaIds" reference="warehouseAreas">
-                                <SelectArrayInput 
-                                    label="table.field.basStation.crossZoneArea"
-                                    optionText="name"
-                                    optionValue="id"
-                                    fullWidth    
-                                    validate={[required()]}   
-                                />
-                            </ReferenceArrayInput>
+                                    <ReferenceArrayInput source="areaIds" reference="warehouseAreas">
+                                        <SelectArrayInput
+                                            label="table.field.basStation.crossZoneArea"
+                                            optionText="name"
+                                            optionValue="id"
+                                            fullWidth
+                                            validate={[required()]}
+                                        />
+                                    </ReferenceArrayInput>
                                 </Grid>
                                 <Grid item xs={6} display="flex" gap={1}>
-                                <SelectInput
-                                    label="table.field.basStation.isWcs"
-                                    source="isWcs"
-                                    choices={[
-                                        { id: 0, name: '鍚�' },
-                                        { id: 1, name: '鏄�' },
-                                    ]}
-                                    validate={[required()]}
-                            />
-                                </Grid>                                
+                                    <SelectInput
+                                        label="table.field.basStation.isWcs"
+                                        source="isWcs"
+                                        choices={[
+                                            { id: 0, name: '鍚�' },
+                                            { id: 1, name: '鏄�' },
+                                        ]}
+                                        validate={[required()]}
+                                    />
+                                </Grid>
                                 <Grid item xs={6} display="flex" gap={1}>
-                                <DictionarySelect
-                                    label={translate("table.field.basStation.containerType")}
-                                    name="containerType"
-                                    size="small"
-                                    validate={[required()]}
-                                    dictTypeCode="sys_container_type"
-                                />
-                                </Grid>                                
+                                    <DictionaryArraySelect
+                                        label={translate("table.field.basStation.containerType")}
+                                        name="containerTypes"
+                                        size="small"
+                                        validate={[required()]}
+                                        dictTypeCode="sys_container_type"
+                                    />
+                                </Grid>
                                 <Grid item xs={6} display="flex" gap={1}>
-                                <SelectInput
-                                    label="table.field.basStation.autoTransfer"
-                                    source="autoTransfer"
-                                    choices={[
-                                        { id: 0, name: '鍚�' },
-                                        { id: 1, name: '鏄�' },
-                                    ]}
-                                    validate={[required()]}
-                            />
+                                    <SelectInput
+                                        label="table.field.basStation.autoTransfer"
+                                        source="autoTransfer"
+                                        choices={[
+                                            { id: 0, name: '鍚�' },
+                                            { id: 1, name: '鏄�' },
+                                        ]}
+                                        validate={[required()]}
+                                    />
                                 </Grid>
 
                                 <Grid item xs={12} display="flex" gap={1}>

--
Gitblit v1.9.1