添加生产导出log, 画布图层工具图层顺序问题

This commit is contained in:
李志鹏
2025-11-06 11:27:12 +08:00
parent ccedd00ea7
commit 21bfe5ef8f
7 changed files with 111 additions and 3 deletions

View File

@@ -946,6 +946,14 @@ export class LayerManager {
return false;
}
// 检查是否是唯一的普通图层
const normalLayers = this.layers.value.filter((l) => !l.isBackground && !l.isFixed);
console.log("普通图层:", normalLayers)
if (normalLayers.length === 1) {
console.warn("不能删除唯一的普通图层");
message.warning("不能删除唯一的普通图层");
return false;
}
// // 如果图层有子图层,提示确认
// if (layer && layer.children && layer.children.length > 0) {
// console.warn("该图层包含子图层,删除将同时删除所有子图层");