From e79fd9a43864f88522cd545e7c4ae971a89a0109 Mon Sep 17 00:00:00 2001
From: luxiaotao1123 <t1341870251@163.com>
Date: 星期四, 07 三月 2024 14:41:34 +0800
Subject: [PATCH] #

---
 zy-asrs-flow/src/pages/map/components/settings.jsx |   51 +++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 51 insertions(+), 0 deletions(-)

diff --git a/zy-asrs-flow/src/pages/map/components/settings.jsx b/zy-asrs-flow/src/pages/map/components/settings.jsx
index e69de29..b6dcba9 100644
--- a/zy-asrs-flow/src/pages/map/components/settings.jsx
+++ b/zy-asrs-flow/src/pages/map/components/settings.jsx
@@ -0,0 +1,51 @@
+import React, { useState, useRef, useEffect } from 'react';
+import { Col, Form, Modal, Row, Checkbox, Image, Tree, Drawer, Space, Button, Card, Divider } from 'antd';
+import { FormattedMessage, useIntl, useModel } from '@umijs/max';
+import * as PIXI from 'pixi.js';
+import { createStyles } from 'antd-style';
+import './index.css'
+
+const useStyles = createStyles(({ token, css }) => {
+
+})
+
+const SpriteSettings = (props) => {
+    const { styles } = useStyles();
+    const { curSprite } = props;
+
+    useEffect(() => {
+
+    }, []);
+
+
+    return (
+        <>
+            <Drawer
+                open={props.open}
+                onClose={() => {
+                    props.onCancel();
+                }}
+                getContainer={props.refCurr}
+                rootStyle={{ position: "absolute" }}
+                mask={false}
+                width={570}
+                extra={
+                    <Space>
+                        <Button onClick={() => props.onCancel()}><FormattedMessage id='common.cancel' defaultMessage='鍙栨秷' /></Button>
+                    </Space>
+                }
+            >
+                <Card>
+                    {/* 
+                        // position
+                        // scale
+                        // rotation
+                        // copy
+                    */}
+                </Card>
+            </Drawer>
+        </>
+    )
+}
+
+export default SpriteSettings;
\ No newline at end of file

--
Gitblit v1.9.1