This commit is contained in:
fan 2023-11-16 11:13:46 +08:00
commit 17bf2350f2
2 changed files with 8 additions and 1 deletions

View File

@ -1,6 +1,11 @@
<template>
<DraggableDialog seamless title="显示 / 选择" :height="510">
<DraggableDialog
seamless
:title="noSelect ? '显示控制' : '显示 / 选择'"
:height="noSelect ? 550 : 510"
>
<q-tabs
v-if="!noSelect"
v-model="tab"
dense
active-color="primary"
@ -97,6 +102,7 @@ const props = defineProps<{
layerList: ItemData[];
showLayer: string[];
app: JlDrawApp | GraphicApp;
noSelect?: boolean; // tab
}>();
function allListFn() {

View File

@ -258,6 +258,7 @@ watch(
layerList: layerList,
showLayer: lineStore.showLayer,
app: scene,
noSelect: true,
},
})
.onCancel(() => {