|
|
|
@ -479,7 +479,7 @@ export class CollectionToolsBuildingComponent implements OnInit {
|
|
|
|
|
let _this = this |
|
|
|
|
let file = imgFile || null //获取上传的文件
|
|
|
|
|
let fileSize = file.size || null //上传文件的总大小
|
|
|
|
|
let shardSize = 5 * 1024 * 1024 //5MB一个分片
|
|
|
|
|
let shardSize = 10 * 1024 * 1024 //5MB一个分片
|
|
|
|
|
let companyId = sessionStorage.getItem("companyId") |
|
|
|
|
if (file && fileSize <= shardSize) { //上传文件<=5MB时
|
|
|
|
|
let formData = new FormData() |
|
|
|
@ -542,7 +542,7 @@ export class CollectionToolsBuildingComponent implements OnInit {
|
|
|
|
|
let config = new MatSnackBarConfig(); |
|
|
|
|
config.verticalPosition = 'top'; |
|
|
|
|
config.duration = 3000 |
|
|
|
|
this.snackBar.open('上传图片文件不允许大于5mb', '确定', config); |
|
|
|
|
this.snackBar.open('上传图片文件不允许大于10mb', '确定', config); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
@ -632,6 +632,7 @@ export class CollectionToolsBuildingComponent implements OnInit {
|
|
|
|
|
AxMessageSystem.addListener('selectionChanged', () => { |
|
|
|
|
if (this.canvas.selection.size() == 1) {//如果是单选
|
|
|
|
|
this.isMultipleAsset = false |
|
|
|
|
console.log('单选', this.canvas.selection.first().assetData) |
|
|
|
|
this.setAssetsProperty(this.canvas.selection.first().assetData) |
|
|
|
|
} else if (this.canvas.selection.size()) { |
|
|
|
|
this.isShowProperty = true |
|
|
|
@ -671,6 +672,7 @@ export class CollectionToolsBuildingComponent implements OnInit {
|
|
|
|
|
}); |
|
|
|
|
}) |
|
|
|
|
}) |
|
|
|
|
// console.log(666,_this.multipleAsset.PropertyInfos)
|
|
|
|
|
} else if (this.canvas.selection.size() == 0) { |
|
|
|
|
this.isShowProperty = false |
|
|
|
|
} |
|
|
|
@ -772,8 +774,8 @@ export class CollectionToolsBuildingComponent implements OnInit {
|
|
|
|
|
//多选状态动态属性素材input框值改变
|
|
|
|
|
multipleAssetInputChange(i, e) { |
|
|
|
|
e.stopPropagation() |
|
|
|
|
setTimeout(() => { |
|
|
|
|
this.multipleAssetData.forEach(item => { |
|
|
|
|
// console.log(item)
|
|
|
|
|
item.assetData.PropertyInfos.forEach(element => { |
|
|
|
|
if (element.PropertyName == i.PropertyName) { |
|
|
|
|
if (this.myIsNaN(i.PropertyValue)) { |
|
|
|
@ -785,6 +787,7 @@ export class CollectionToolsBuildingComponent implements OnInit {
|
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
}) |
|
|
|
|
}, 0); |
|
|
|
|
} |
|
|
|
|
//多选状态动态属性素材radio框值改变
|
|
|
|
|
multipleAssetRadioChange(i, value) { |
|
|
|
@ -804,7 +807,6 @@ export class CollectionToolsBuildingComponent implements OnInit {
|
|
|
|
|
multipleSupplyArea(i, e) { |
|
|
|
|
e.stopPropagation() |
|
|
|
|
this.multipleAssetData.forEach(item => { |
|
|
|
|
// console.log(item)
|
|
|
|
|
item.assetData.PropertyInfos.forEach(element => { |
|
|
|
|
if (element.PropertyName == i.PropertyName) { |
|
|
|
|
element.PropertyValue = i.PropertyValue |
|
|
|
|