vincentlu
2026-01-05 583b31d46bb8abbee7410d29ca229120ee589cba
zy-acs-flow/src/page/agvModel/AgvModelPanel.jsx
@@ -42,107 +42,118 @@
                    <Grid container spacing={2}>
                        <Grid item xs={6}>
                            <PanelTypography
                                title="table.field.agvModel.uuid"
                                title="table.field.agvModel.uuid"
                                property={record.uuid}
                            />
                        </Grid>
                        <Grid item xs={6}>
                            <PanelTypography
                                title="table.field.agvModel.type"
                                title="table.field.agvModel.type"
                                property={record.type}
                            />
                        </Grid>
                        <Grid item xs={6}>
                            <PanelTypography
                                title="table.field.agvModel.name"
                                title="table.field.agvModel.name"
                                property={record.name}
                            />
                        </Grid>
                        <Grid item xs={6}>
                            <PanelTypography
                                title="table.field.agvModel.length"
                                title="table.field.agvModel.length"
                                property={record.length}
                            />
                        </Grid>
                        <Grid item xs={6}>
                            <PanelTypography
                                title="table.field.agvModel.width"
                                title="table.field.agvModel.width"
                                property={record.width}
                            />
                        </Grid>
                        <Grid item xs={6}>
                            <PanelTypography
                                title="table.field.agvModel.height"
                                title="table.field.agvModel.height"
                                property={record.height}
                            />
                        </Grid>
                        <Grid item xs={6}>
                            <PanelTypography
                                title="table.field.agvModel.liftHeight"
                                title="table.field.agvModel.liftHeight"
                                property={record.liftHeight}
                            />
                        </Grid>
                        <Grid item xs={6}>
                            <PanelTypography
                                title="table.field.agvModel.diameter"
                                title="table.field.agvModel.diameter"
                                property={record.diameter}
                            />
                        </Grid>
                        <Grid item xs={6}>
                            <PanelTypography
                                title="table.field.agvModel.password"
                                title="table.field.agvModel.password"
                                property={record.password}
                            />
                        </Grid>
                        <Grid item xs={6}>
                            <PanelTypography
                                title="table.field.agvModel.backpack"
                                title="table.field.agvModel.backpack"
                                property={record.backpack}
                            />
                        </Grid>
                        <Grid item xs={6}>
                            <PanelTypography
                                title="table.field.agvModel.lowBattery"
                                title="table.field.agvModel.lowBattery"
                                property={record.lowBattery}
                            />
                        </Grid>
                        <Grid item xs={6}>
                            <PanelTypography
                                title="table.field.agvModel.quaBattery"
                                title="table.field.agvModel.quaBattery"
                                property={record.quaBattery}
                            />
                        </Grid>
                        <Grid item xs={6}>
                            <PanelTypography
                                title="table.field.agvModel.travelSpeed"
                                title="table.field.agvModel.travelSpeed"
                                property={record.travelSpeed}
                            />
                        </Grid>
                        <Grid item xs={6}>
                            <PanelTypography
                                title="table.field.agvModel.workDirection"
                                title="table.field.agvModel.workDirection"
                                property={record.workDirection}
                            />
                        </Grid>
                        <Grid item xs={6}>
                            <PanelTypography
                                title="table.field.agvModel.allDirection"
                                property={record.allDirection$}
                                title="table.field.agvModel.allDirection"
                                property={record.allDirection ? translate('common.enums.true') : translate('common.enums.false')}
                            />
                        </Grid>
                        <Grid item xs={6}>
                            <PanelTypography
                                title="table.field.agvModel.protocol"
                                title="table.field.agvModel.protocol"
                                property={record.protocol}
                            />
                        </Grid>
                        <Grid item xs={6}>
                        {/* <Grid item xs={6}>
                            <PanelTypography
                                title="table.field.agvModel.mqttTopic"
                                title="table.field.agvModel.mqttTopic"
                                property={record.mqttTopic}
                            />
                        </Grid> */}
                        <Grid item xs={6}>
                            <PanelTypography
                                title="table.field.agvModel.needUndocking"
                                property={record.needUndockingBool ? translate('common.enums.true') : translate('common.enums.false')}
                            />
                        </Grid>
                        <Grid item xs={6}>
                            <PanelTypography
                                title="table.field.agvModel.backupAction"
                                property={record.backupAction ? translate('common.enums.true') : translate('common.enums.false')}
                            />
                        </Grid>
                    </Grid>
                </CardContent>
            </Card >