Browse Source

[完善]上传底图限制到100M

上海一张图
邵佳豪 4 years ago
parent
commit
f6c1985fde
  1. 6
      src/app/ui/collection-tools-building/collection-tools.component.ts
  2. 6
      src/app/ui/collection-tools-plan/collection-tools.component.ts
  3. 4
      src/app/ui/collection-tools-plan/leftFunctionalDomain.ts
  4. 6
      src/app/ui/collection-tools/collection-tools.component.ts
  5. 18
      src/app/ui/collection-tools/leftFunctionalDomain.ts

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

@ -2086,7 +2086,7 @@ export class CollectionToolsBuildingComponent implements OnInit {
let file = e.target.files[0] || null //获取上传的文件
let fileSize = file.size || null //上传文件的总大小
let maxSize = 5 * 1024 * 1024 //5MB一个分片
let tenSize = 10 * 1024 * 1024 //10MB限制
let tenSize = 100 * 1024 * 1024 //100MB限制
if (file && file.name.toLowerCase().indexOf('png') == -1 && file.name.toLowerCase().indexOf('jpg') == -1 && file.name.toLowerCase().indexOf('jpeg') == -1) {
const config = new MatSnackBarConfig();
config.verticalPosition = 'top';
@ -2101,14 +2101,14 @@ export class CollectionToolsBuildingComponent implements OnInit {
this.http.post(`/api/Objects/WebPlan2D/${sessionStorage.getItem('companyId')}`, formData).subscribe((data: any) => {
this.renovateBaseMap('/api/Objects/WebPlan2D/' + data.objectName, item)
})
} else if (file && fileSize > maxSize && fileSize < tenSize) { //上传文件>10MB时
} else if (file && fileSize > maxSize && fileSize < tenSize) { //上传文件>100MB时
let upload = this.canvasData.sectionUpload(sessionStorage.getItem('companyId'), file)
upload.then(res => { this.renovateBaseMap('/api/Objects/PlanPlatform/' + res, item) })
} else {
const config = new MatSnackBarConfig();
config.verticalPosition = 'top';
config.duration = 3000
this.snackBar.open('上传底图需小于10MB', '确定', config);
this.snackBar.open('上传底图需小于100MB', '确定', config);
}
}

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

@ -2059,7 +2059,7 @@ export class CollectionToolsPlanComponent implements OnInit {
let file = e.target.files[0] || null //获取上传的文件
let fileSize = file.size || null //上传文件的总大小
let maxSize = 5 * 1024 * 1024 //5MB一个分片
let tenSize = 10 * 1024 * 1024 //10MB限制
let tenSize = 100 * 1024 * 1024 //100MB限制
if (file && file.name.toLowerCase().indexOf('png') == -1 && file.name.toLowerCase().indexOf('jpg') == -1 && file.name.toLowerCase().indexOf('jpeg') == -1) {
const config = new MatSnackBarConfig();
config.verticalPosition = 'top';
@ -2074,14 +2074,14 @@ export class CollectionToolsPlanComponent implements OnInit {
this.http.post(`/api/Objects/WebPlan2D/${sessionStorage.getItem('companyId')}`, formData).subscribe((data: any) => {
this.renovateBaseMap('/api/Objects/WebPlan2D/' + data.objectName, item)
})
} else if (file && fileSize > maxSize && fileSize < tenSize) { //上传文件>10MB时
} else if (file && fileSize > maxSize && fileSize < tenSize) { //上传文件5-100MB时
let upload = this.canvasData.sectionUpload(sessionStorage.getItem('companyId'), file)
upload.then(res => { this.renovateBaseMap('/api/Objects/PlanPlatform/' + res, item) })
} else {
const config = new MatSnackBarConfig();
config.verticalPosition = 'top';
config.duration = 3000
this.snackBar.open('上传底图需小于10MB', '确定', config);
this.snackBar.open('上传底图需小于100MB', '确定', config);
}
}

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

@ -31,7 +31,7 @@ export class leftFunctionalDomainComponentPlan implements OnInit {
//选择文件
selectFile (e) {
if (e.target.files.length) {
let maxSize = 10*1024*1024 //10MB限制
let maxSize = 100*1024*1024 //100MB限制
if (e.target.files[0].size <= maxSize) {
this.file = e.target.files[0]
this.selectedType = 'image'
@ -39,7 +39,7 @@ export class leftFunctionalDomainComponentPlan implements OnInit {
const config = new MatSnackBarConfig();
config.verticalPosition = 'top';
config.duration = 3000
this.snackBar.open('上传图片需小于10MB','确定',config);
this.snackBar.open('上传图片需小于100MB','确定',config);
}
}
}

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

@ -2155,7 +2155,7 @@ export class CollectionToolsComponent implements OnInit {
let file = e.target.files[0] || null //获取上传的文件
let fileSize = file.size || null //上传文件的总大小
let maxSize = 5 * 1024 * 1024 //5MB一个分片
let tenSize = 10 * 1024 * 1024 //10MB限制
let tenSize = 100 * 1024 * 1024 //100MB限制
if (file && file.name.toLowerCase().indexOf('png') == -1 && file.name.toLowerCase().indexOf('jpg') == -1 && file.name.toLowerCase().indexOf('jpeg') == -1) {
const config = new MatSnackBarConfig();
config.verticalPosition = 'top';
@ -2170,14 +2170,14 @@ export class CollectionToolsComponent implements OnInit {
this.http.post(`/api/Objects/WebPlan2D/${sessionStorage.getItem('companyId')}`, formData).subscribe((data: any) => {
this.renovateBaseMap('/api/Objects/WebPlan2D/' + data.objectName, item)
})
} else if (file && fileSize > maxSize && fileSize < tenSize) { //上传文件>10MB时
} else if (file && fileSize > maxSize && fileSize < tenSize) { //上传文件>100MB时
let upload = this.canvasData.sectionUpload(sessionStorage.getItem('companyId'), file)
upload.then(res => { this.renovateBaseMap('/api/Objects/PlanPlatform/' + res, item) })
} else {
const config = new MatSnackBarConfig();
config.verticalPosition = 'top';
config.duration = 3000
this.snackBar.open('上传底图需小于10MB', '确定', config);
this.snackBar.open('上传底图需小于100MB', '确定', config);
}
}

18
src/app/ui/collection-tools/leftFunctionalDomain.ts

@ -215,14 +215,14 @@ export class addBGCDisposalNodeComponent implements OnInit {
//上传图片
selectFile(e) {
if (e.target.files.length) {
let maxSize = 10*1024*1024
let maxSize = 100 * 1024 * 1024
if (e.target.files[0].size <= maxSize) {
this.file = e.target.files[0]
} else {
const config = new MatSnackBarConfig();
config.verticalPosition = 'top';
config.duration = 3000
this.snackBar.open('上传图片需小于10MB','确定',config);
this.snackBar.open('上传图片需小于100MB', '确定', config);
}
}
}
@ -230,13 +230,13 @@ export class addBGCDisposalNodeComponent implements OnInit {
//提交表单
onSubmit(e) {
if (e.name && this.file) {
     if (this.file.name.toLowerCase().indexOf('png') == -1 && this.file.name.toLowerCase().indexOf('jpg') == -1 && this.file.name.toLowerCase().indexOf('jpeg') == -1) {
      const config = new MatSnackBarConfig();
      config.verticalPosition = 'top';
      config.duration = 3000
      this.snackBar.open('请上传图片后缀为png,jpg,jpeg的文件', '确定', config);
      return
    }
if (this.file.name.toLowerCase().indexOf('png') == -1 && this.file.name.toLowerCase().indexOf('jpg') == -1 && this.file.name.toLowerCase().indexOf('jpeg') == -1) {
const config = new MatSnackBarConfig();
config.verticalPosition = 'top';
config.duration = 3000
this.snackBar.open('请上传图片后缀为png,jpg,jpeg的文件', '确定', config);
return
}
e.file = this.file
this.dialogRef.close(e);
} else {

Loading…
Cancel
Save