|
@@ -1,7 +1,7 @@
|
|
|
<template>
|
|
|
<div class="layout">
|
|
|
<GraphicAction class="full-action">
|
|
|
- <ui-icon type="lock" ctrl @click="clickHandlerFactory(UIEvents.UnLock)"/>
|
|
|
+ <ui-icon type="lock" ctrl @click="clickHandlerFactory(UIEvents.UnLock)()"/>
|
|
|
</GraphicAction>
|
|
|
<GeoTeleport :menus="menus" class="geo-teleport-use" />
|
|
|
</div>
|
|
@@ -9,16 +9,11 @@
|
|
|
|
|
|
<script setup lang="ts">
|
|
|
import GeoTeleport from "@/views/graphic/geos/geo-teleport.vue";
|
|
|
-import UiInput from "@/components/base/components/input/index.vue";
|
|
|
import UiIcon from "@/components/base/components/icon/index.vue";
|
|
|
-import {drawRef, FocusVector, uiType, UIType, useChange} from '@/hook/useGraphic'
|
|
|
-import {computed, ref, toRaw, UnwrapRef, watch, watchEffect} from "vue";
|
|
|
+import {drawRef, FocusVector, uiType, UIType} from '@/hook/useGraphic'
|
|
|
+import {computed, ref} from "vue";
|
|
|
import {dataService} from "@/graphic/Service/DataService";
|
|
|
import GeoActions from "@/graphic/enum/GeoActions"
|
|
|
-import {debounce} from "@/utils";
|
|
|
-import VectorCategory from "@/graphic/enum/VectorCategory";
|
|
|
-import {UITypeExtend} from "@/views/graphic/menus";
|
|
|
-import {customMap} from "@/hook";
|
|
|
import GraphicAction from "@/components/button-pane/index.vue";
|
|
|
import UIEvents from "@/graphic/enum/UIEvents";
|
|
|
|