From 547f32c31c2132587fae4d67685fb10766e79d6e Mon Sep 17 00:00:00 2001 From: walker Date: Mon, 22 May 2023 09:48:32 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E9=A3=8E=E6=9C=BA=E5=B1=9E?= =?UTF-8?q?=E6=80=A7=E7=BC=96=E8=BE=91=E8=A1=A8=E5=8D=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/draw-app/DrawProperties.vue | 11 ++++- .../draw-app/properties/IscsFanProperty.vue | 42 +++++++++++++++++++ .../draw-app/properties/LinkProperty.vue | 8 +++- 3 files changed, 58 insertions(+), 3 deletions(-) create mode 100644 src/components/draw-app/properties/IscsFanProperty.vue diff --git a/src/components/draw-app/DrawProperties.vue b/src/components/draw-app/DrawProperties.vue index 8dc67ad..195a807 100644 --- a/src/components/draw-app/DrawProperties.vue +++ b/src/components/draw-app/DrawProperties.vue @@ -26,8 +26,13 @@ @@ -38,8 +43,10 @@ import LinkTemplate from './templates/LinkTemplate.vue'; import CanvasProperty from './properties/CanvasProperty.vue'; import LinkProperty from './properties/LinkProperty.vue'; +import IscsFanProperty from './properties/IscsFanProperty.vue'; import { Link } from 'src/graphics/link/Link'; import { useDrawStore } from 'src/stores/draw-store'; +import { IscsFan } from 'src/graphics/iscs-fan/IscsFan'; const drawStore = useDrawStore(); diff --git a/src/components/draw-app/properties/IscsFanProperty.vue b/src/components/draw-app/properties/IscsFanProperty.vue new file mode 100644 index 0000000..c743f61 --- /dev/null +++ b/src/components/draw-app/properties/IscsFanProperty.vue @@ -0,0 +1,42 @@ + + + diff --git a/src/components/draw-app/properties/LinkProperty.vue b/src/components/draw-app/properties/LinkProperty.vue index b74805f..e464b76 100644 --- a/src/components/draw-app/properties/LinkProperty.vue +++ b/src/components/draw-app/properties/LinkProperty.vue @@ -1,6 +1,12 @@