Browse Source

[完善]辅助楼层修改素材的楼层ID;修复上传地图大于10M问题

tangshan
邵佳豪 4 years ago
parent
commit
ce9006c475
  1. 2
      src/app/plan-management/entry-plan-look/AddPlanone.html
  2. 14
      src/app/ui/collection-tools-building/collection-tools.component.ts
  3. 14
      src/app/ui/collection-tools-plan/collection-tools.component.ts
  4. 2
      src/app/ui/collection-tools-plan/leftFunctionalDomain.ts
  5. 12
      src/app/ui/collection-tools/collection-tools.component.ts

2
src/app/plan-management/entry-plan-look/AddPlanone.html

@ -62,7 +62,7 @@
<span *ngIf="uploadover" style="font-size: 13px;">(已上传)</span>
</div>
<div *ngIf="inputword">
<mat-radio-button value="2" style="margin-right: 10px;">在线编制</mat-radio-button>
<!-- <mat-radio-button value="2" style="margin-right: 10px;">在线编制</mat-radio-button> -->
<!-- <button mat-raised-button *ngIf="isinput" (click)='createWord()'>在线编制预案</button> -->
</div>
<!-- <div *ngIf="inputword">

14
src/app/ui/collection-tools-building/collection-tools.component.ts

@ -1935,6 +1935,12 @@ export class CollectionToolsBuildingComponent implements OnInit {
item.name = item.name + '(副本)'
item.order = this.sitePlanData[this.sitePlanData.length - 1].order + 1
this.http.post('/api/SitePlans', item).subscribe((data: any) => {
for (const key in paramsData) {
if (Object.prototype.hasOwnProperty.call(paramsData, key)) {
const element = paramsData[key];
element.FloorId = data.id
}
}
let newData = {
version: "2.0",
id: "",
@ -1991,6 +1997,14 @@ export class CollectionToolsBuildingComponent implements OnInit {
item.name = item.name + '(副本)'
item.order = this.sitePlanData[this.sitePlanData.length - 1].order + 1
this.http.post('/api/BuildingAreas', item, { params: this.params }).subscribe((data: any) => {
// console.log('复制出的新楼层',data.id)
// console.log('复制的数据',paramsData)
for (const key in paramsData) {
if (Object.prototype.hasOwnProperty.call(paramsData, key)) {
const element = paramsData[key];
element.FloorId = data.id
}
}
let newData = {
version: "2.0",
id: "",

14
src/app/ui/collection-tools-plan/collection-tools.component.ts

@ -864,7 +864,7 @@ export class CollectionToolsPlanComponent implements OnInit {
//保存建筑数据
// console.log('CompanyData',CompanyData)
// CompanyData.data = "{\"图例\":{\"Id\":\"图例\",\"Name\":\"图例\",\"Angle\":0,\"Color\":\"#066EED80\",\"Point\":{\"x\":200,\"y\":200},\"Scale\":1,\"Width\":32,\"Border\":null,\"Height\":32,\"PivotX\":0,\"PivotY\":0,\"Enabled\":true,\"FloorId\":\"60d42db743d691776496cf7c\",\"DrawMode\":null,\"FillMode\":null,\"GameMode\":0,\"ImageUrl\":null,\"FixedSize\":null,\"Thickness\":null,\"MultiPoint\":null,\"TemplateId\":null,\"FireElementId\":null,\"PropertyInfos\":[{\"Tag\":\"\",\"Order\":0,\"Enabled\":true,\"Visible\":true,\"Required\":false,\"RuleName\":\"\",\"RuleValue\":\"\",\"PhysicalUnit\":\"\",\"PropertyName\":\"列\",\"PropertyType\":2,\"PropertyValue\":\"2\"}],\"IsFromBuilding\":null,\"InteractiveMode\":null}}"
CompanyData.data = "{\"图例\":{\"Id\":\"图例\",\"Name\":\"图例\",\"Angle\":0,\"Color\":\"#066EED80\",\"Point\":{\"x\":200,\"y\":200},\"Scale\":1,\"Width\":32,\"Border\":null,\"Height\":32,\"PivotX\":0,\"PivotY\":0,\"Enabled\":true,\"FloorId\":\"60d43256660b093f1c3b5aa5\",\"DrawMode\":null,\"FillMode\":null,\"GameMode\":0,\"ImageUrl\":null,\"FixedSize\":null,\"Thickness\":null,\"MultiPoint\":null,\"TemplateId\":null,\"FireElementId\":null,\"PropertyInfos\":[{\"Tag\":\"\",\"Order\":0,\"Enabled\":true,\"Visible\":true,\"Required\":false,\"RuleName\":\"\",\"RuleValue\":\"\",\"PhysicalUnit\":\"\",\"PropertyName\":\"列\",\"PropertyType\":2,\"PropertyValue\":\"2\"}],\"IsFromBuilding\":null,\"InteractiveMode\":null}}"
this.http.post("/api/CompanyData", CompanyData, {
params: {
@ -1896,6 +1896,12 @@ export class CollectionToolsPlanComponent implements OnInit {
item.name = item.name + '(副本)'
item.order = this.sitePlanData[this.sitePlanData.length - 1].order + 1
this.http.post('/api/SitePlans', item).subscribe((data: any) => {
for (const key in paramsData) {
if (Object.prototype.hasOwnProperty.call(paramsData, key)) {
const element = paramsData[key];
element.FloorId = data.id
}
}
let newData = {
version: "2.0",
id: "",
@ -1952,6 +1958,12 @@ export class CollectionToolsPlanComponent implements OnInit {
item.name = item.name + '(副本)'
item.order = this.sitePlanData[this.sitePlanData.length - 1].order + 1
this.http.post('/api/BuildingAreas', item, { params: this.params }).subscribe((data: any) => {
for (const key in paramsData) {
if (Object.prototype.hasOwnProperty.call(paramsData, key)) {
const element = paramsData[key];
element.FloorId = data.id
}
}
let newData = {
version: "2.0",
id: "",

2
src/app/ui/collection-tools-plan/leftFunctionalDomain.ts

@ -113,7 +113,7 @@ export class leftFunctionalDomainComponentPlan implements OnInit {
}
}
}) //post
} else if (this.file.size>5*1024*1024 && this.file.size<=10*1024*1024) { //大于5MB
} else if (this.file.size>5*1024*1024 && this.file.size<=100*1024*1024) { //大于5MB
let upload = this.canvasData.sectionUpload(sessionStorage.getItem('companyId'),this.file)
upload.then(res=>{
let imgURL = '/api/Objects/PlanPlatform/' + res

12
src/app/ui/collection-tools/collection-tools.component.ts

@ -2004,6 +2004,12 @@ export class CollectionToolsComponent implements OnInit {
item.name = item.name + '(副本)'
item.order = this.sitePlanData[this.sitePlanData.length - 1].order + 1
this.http.post('/api/SitePlans', item).subscribe((data: any) => {
for (const key in paramsData) {
if (Object.prototype.hasOwnProperty.call(paramsData, key)) {
const element = paramsData[key];
element.FloorId = data.id
}
}
let newData = {
version: "2.0",
id: "",
@ -2060,6 +2066,12 @@ export class CollectionToolsComponent implements OnInit {
item.name = item.name + '(副本)'
item.order = this.sitePlanData[this.sitePlanData.length - 1].order + 1
this.http.post('/api/BuildingAreas', item, { params: this.params }).subscribe((data: any) => {
for (const key in paramsData) {
if (Object.prototype.hasOwnProperty.call(paramsData, key)) {
const element = paramsData[key];
element.FloorId = data.id
}
}
let newData = {
version: "2.0",
id: "",

Loading…
Cancel
Save