|
|
|
@ -629,6 +629,7 @@ export class CollectionToolsPlanComponent implements OnInit {
|
|
|
|
|
firstMultipleAssetData:any//当前多选的第一个素材
|
|
|
|
|
ngOnInit(): void { |
|
|
|
|
let _this = this |
|
|
|
|
|
|
|
|
|
AxMessageSystem.addListener('selectionChanged', ()=>{ |
|
|
|
|
if(this.canvas.selection.size() == 1){//如果是单选
|
|
|
|
|
this.isMultipleAsset = false |
|
|
|
@ -636,6 +637,7 @@ export class CollectionToolsPlanComponent implements OnInit {
|
|
|
|
|
this.setAssetsProperty(this.canvas.selection.first().assetData) |
|
|
|
|
}else if(this.canvas.selection.size()){ |
|
|
|
|
// console.log('多选')
|
|
|
|
|
this.isShowProperty = true |
|
|
|
|
this.multipleAssetData = this.canvas.selection.all() |
|
|
|
|
this.firstMultipleAssetData = this.canvas.selection.first() |
|
|
|
|
this.multipleAsset = { |
|
|
|
@ -673,6 +675,8 @@ export class CollectionToolsPlanComponent implements OnInit {
|
|
|
|
|
})
|
|
|
|
|
}) |
|
|
|
|
// console.log(666,_this.multipleAsset.PropertyInfos)
|
|
|
|
|
}else if(this.canvas.selection.size() == 0){ |
|
|
|
|
this.isShowProperty = false |
|
|
|
|
} |
|
|
|
|
}, this) |
|
|
|
|
|
|
|
|
@ -831,6 +835,7 @@ export class CollectionToolsPlanComponent implements OnInit {
|
|
|
|
|
// })
|
|
|
|
|
// 监听canvas组件取消选中素材事件
|
|
|
|
|
this.canvas.on("deselect",obj=>{ |
|
|
|
|
console.log(77777) |
|
|
|
|
this.isShowProperty = false |
|
|
|
|
}) |
|
|
|
|
//监听数据变化后
|
|
|
|
|