|
@@ -26,6 +26,7 @@
|
|
|
</div>
|
|
|
|
|
|
<span
|
|
|
+ v-if="fuseModels.length > 0 || scenes.length === 0"
|
|
|
class="taggle map-type"
|
|
|
@click="isStandard = !isStandard"
|
|
|
@touchend="isStandard = !isStandard"
|
|
@@ -41,7 +42,16 @@
|
|
|
<script lang="ts" setup>
|
|
|
import { custom, params } from "@/env";
|
|
|
import { computed, ref, watch, watchEffect, nextTick } from "vue";
|
|
|
-import { isEdit, prefix, appEl, initialSetting, caseProject, refreshCase } from "@/store";
|
|
|
+import {
|
|
|
+ isEdit,
|
|
|
+ prefix,
|
|
|
+ appEl,
|
|
|
+ initialSetting,
|
|
|
+ caseProject,
|
|
|
+ refreshCase,
|
|
|
+ fuseModels,
|
|
|
+ scenes,
|
|
|
+} from "@/store";
|
|
|
import router, { currentLayout, RoutesName } from "./router";
|
|
|
import { loadPack, needMounts } from "@/utils";
|
|
|
import { ConfigProvider } from "ant-design-vue";
|