From 1bc33546a044cbc84dd9595c19dbcd9a4e309fc9 Mon Sep 17 00:00:00 2001
From: vincentlu <t1341870251@gmail.com>
Date: 星期六, 10 一月 2026 14:06:10 +0800
Subject: [PATCH] #
---
zy-acs-flow/src/page/agvModel/AgvModelCreate.jsx | 44 ++++++++++++++++++++++++++++++++++----------
1 files changed, 34 insertions(+), 10 deletions(-)
diff --git a/zy-acs-flow/src/page/agvModel/AgvModelCreate.jsx b/zy-acs-flow/src/page/agvModel/AgvModelCreate.jsx
index 8455651..cbd0f58 100644
--- a/zy-acs-flow/src/page/agvModel/AgvModelCreate.jsx
+++ b/zy-acs-flow/src/page/agvModel/AgvModelCreate.jsx
@@ -48,8 +48,8 @@
notify('common.response.success');
};
- const handleError = async (data) => {
- notify('common.response.fail');
+ const handleError = async (error) => {
+ notify(error.message || 'common.response.fail', { type: 'error', messageArgs: { _: error.message } });
};
return (
@@ -108,19 +108,19 @@
validate={required()}
/>
</Grid>
- <Grid item xs={6} display="flex" gap={1}>
+ <Grid item xs={4} display="flex" gap={1}>
<NumberInput
label="table.field.agvModel.length"
source="length"
/>
</Grid>
- <Grid item xs={6} display="flex" gap={1}>
+ <Grid item xs={4} display="flex" gap={1}>
<NumberInput
label="table.field.agvModel.width"
source="width"
/>
</Grid>
- <Grid item xs={6} display="flex" gap={1}>
+ <Grid item xs={4} display="flex" gap={1}>
<NumberInput
label="table.field.agvModel.height"
source="height"
@@ -157,12 +157,14 @@
<NumberInput
label="table.field.agvModel.lowBattery"
source="lowBattery"
+ validate={required()}
/>
</Grid>
<Grid item xs={6} display="flex" gap={1}>
<NumberInput
label="table.field.agvModel.quaBattery"
source="quaBattery"
+ validate={required()}
/>
</Grid>
<Grid item xs={6} display="flex" gap={1}>
@@ -183,8 +185,8 @@
label="table.field.agvModel.allDirection"
source="allDirection"
choices={[
- { id: 0, name: '鍚�' },
- { id: 1, name: '鏄�' },
+ { id: 0, name: 'common.enums.false' },
+ { id: 1, name: 'common.enums.true' },
]}
validate={required()}
/>
@@ -196,17 +198,39 @@
parse={v => v}
/>
</Grid>
- <Grid item xs={6} display="flex" gap={1}>
+ {/* <Grid item xs={6} display="flex" gap={1}>
<TextInput
label="table.field.agvModel.mqttTopic"
source="mqttTopic"
parse={v => v}
/>
+ </Grid> */}
+ <Grid item xs={6} display="flex" gap={1}>
+ <SelectInput
+ label="table.field.agvModel.needUndocking"
+ source="needUndocking"
+ choices={[
+ { id: 0, name: 'common.enums.false' },
+ { id: 1, name: 'common.enums.true' },
+ ]}
+ validate={required()}
+ />
+ </Grid>
+ <Grid item xs={6} display="flex" gap={1}>
+ <SelectInput
+ label="table.field.agvModel.backupAction"
+ source="backupAction"
+ choices={[
+ { id: 0, name: 'common.enums.false' },
+ { id: 1, name: 'common.enums.true' },
+ ]}
+ validate={required()}
+ />
</Grid>
- <Grid item xs={6} display="flex" gap={1}>
+ {/* <Grid item xs={6} display="flex" gap={1}>
<StatusSelectInput />
- </Grid>
+ </Grid> */}
<Grid item xs={12} display="flex" gap={1}>
<Stack direction="column" spacing={1} width={'100%'}>
<MemoInput />
--
Gitblit v1.9.1