#
luxiaotao1123
2024-03-13 df0d6900ef9a3826ddd5ce8eaa9be36ff67eebf1
zy-asrs-flow/src/pages/map/components/configSettings.jsx
@@ -38,6 +38,7 @@
    };
    const handleFinish = async (values) => {
        console.log(values); return
        props.onSubmit({ ...values });
    }
@@ -84,6 +85,53 @@
                        </Row>
                    </Col>
                    {curSprite?.data?.type === Utils.SENSOR_TYPE.AGV && (
                        <>
                        </>
                    )}
                    {curSprite?.data?.type === Utils.SENSOR_TYPE.SHELF && (
                        <>
                            <Col span={24}>
                                <Form.Item
                                    name='shelfNo'
                                    label={intl.formatMessage({ id: 'map.settings.shelf.no', defaultMessage: '货架号' })}
                                >
                                    <Input
                                        style={{
                                            width: '50%',
                                        }}
                                    />
                                </Form.Item>
                            </Col>
                            <Col span={24}>
                                <Form.Item
                                    name='row'
                                    label={intl.formatMessage({ id: 'map.settings.shelf.row', defaultMessage: '排' })}
                                >
                                    <InputNumber
                                        style={{
                                            width: '50%',
                                        }}
                                    />
                                </Form.Item>
                            </Col>
                            <Col span={24}>
                                <Form.Item
                                    name='bay'
                                    label={intl.formatMessage({ id: 'map.settings.shelf.bay', defaultMessage: '列' })}
                                >
                                    <InputNumber
                                        style={{
                                            width: '50%',
                                        }}
                                    />
                                </Form.Item>
                            </Col>
                        </>
                    )}
                </Row>
            </Form>
        </>