#
luxiaotao1123
2024-10-11 cfc0e56fb656d127716f3c77c1fd57a98bf3a337
zy-acs-flow/src/map/settings/MapSettings.jsx
@@ -70,6 +70,7 @@
    };
    return (
        <>
        <Box component="form" onSubmit={handleSubmit(onFormSubmit)} noValidate sx={{ mt: 0 }}>
            <Grid container spacing={1.4}>
                {/* position */}
@@ -318,14 +319,6 @@
                    </Stack>
                </Grid>
                <CopyDrawer
                    open={copyVisible}
                    onCancel={() => {
                        setCopyVisible(false);
                    }}
                    width={width}
                />
                <Grid item xs={12}>
                    <Divider />
                </Grid>
@@ -351,6 +344,19 @@
                </Grid>
            </Grid>
        </Box>
            <CopyDrawer
                open={copyVisible}
                onCancel={() => {
                    setCopyVisible(false);
                }}
                width={width}
                sprite={sprite}
                handleOnCopy={() => {
                }}
            />
        </>
    );
};