From 7bb6b996d2993ea2f6cb20132316c0fc6885cb6d Mon Sep 17 00:00:00 2001
From: zhou zhou <3272660260@qq.com>
Date: 星期五, 16 一月 2026 13:29:44 +0800
Subject: [PATCH] #pda-订单出库
---
rsf-admin/src/page/basicInfo/basStation/BasStationCreate.jsx | 13 ++++++++++++-
1 files changed, 12 insertions(+), 1 deletions(-)
diff --git a/rsf-admin/src/page/basicInfo/basStation/BasStationCreate.jsx b/rsf-admin/src/page/basicInfo/basStation/BasStationCreate.jsx
index 0993b27..5341c65 100644
--- a/rsf-admin/src/page/basicInfo/basStation/BasStationCreate.jsx
+++ b/rsf-admin/src/page/basicInfo/basStation/BasStationCreate.jsx
@@ -39,7 +39,7 @@
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);
@@ -98,6 +98,17 @@
</Grid>
<Grid item xs={6} display="flex" gap={1}>
<SelectInput
+ label="table.field.basStation.type"
+ source="type"
+ choices={[
+ { id: 0, name: '鍏夌數' },
+ { id: 1, name: '鏃犲厜鐢�' },
+ ]}
+ validate={[required()]}
+ />
+ </Grid>
+ <Grid item xs={6} display="flex" gap={1}>
+ <SelectInput
label="table.field.basStation.inAble"
source="inAble"
choices={[
--
Gitblit v1.9.1