From aaae6cf85ba8a5ccb46b384bc024df804d3da912 Mon Sep 17 00:00:00 2001
From: luxiaotao1123 <t1341870251@163.com>
Date: 星期三, 06 三月 2024 14:40:09 +0800
Subject: [PATCH] #

---
 zy-asrs-flow/src/pages/map/components/settings.jsx |   50 ++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 50 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..fe3bca2 100644
--- a/zy-asrs-flow/src/pages/map/components/settings.jsx
+++ b/zy-asrs-flow/src/pages/map/components/settings.jsx
@@ -0,0 +1,50 @@
+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();
+
+    useEffect(() => {
+
+    }, []);
+
+
+    return (
+        <>
+            <Drawer
+                open={props.open}
+                onClose={() => {
+                    props.onCancel();
+                }}
+                getContainer={props.refCurr}
+                rootStyle={{ position: "absolute" }}
+                mask={false}
+                width={578}
+                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