|
|
|
@ -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 { |
|
|
|
|