合并画布

This commit is contained in:
X1627315083
2025-06-22 13:52:28 +08:00
parent fd6d61a44a
commit 584f6a7db0
47 changed files with 4540 additions and 1952 deletions

View File

@@ -43,10 +43,10 @@ const props = defineProps({
type: Boolean,
default: true,
},
thumbnailUrl: {
type: String,
default: null,
},
// thumbnailUrl: {
// type: String,
// default: null,
// },
isHidenDragHandle: {
type: Boolean,
default: false,
@@ -404,14 +404,11 @@ function findParentLayerId() {
<!-- 图层预览图标 -->
<div class="layer-review">
<img
v-if="thumbnailUrl"
:src="thumbnailUrl"
v-if="layer.thumbnailUrl"
:src="layer.thumbnailUrl"
class="layer-thumbnail"
:alt="$t('图层预览')"
/>
<span v-else class="layer-type-icon">{{
getLayerTypeIcon(layer)
}}</span>
</div>
<!-- 图层名称 -->