Browse Source

[完善]修改上传

tangshan
邵佳豪 3 years ago
parent
commit
37e480fe40
  1. 26
      src/app/plan-management/entry-plan-look/entry-plan-look.component.ts
  2. 20
      src/app/plan-management/entry-plan-look/upLoad.html

26
src/app/plan-management/entry-plan-look/entry-plan-look.component.ts

@ -170,6 +170,7 @@ export class EntryPlanLookComponent implements OnInit {
} }
//编辑预案 //编辑预案
editPlan(e) { editPlan(e) {
console.log(e)
const config = new MatSnackBarConfig(); const config = new MatSnackBarConfig();
config.verticalPosition = 'top'; config.verticalPosition = 'top';
config.duration = 3000 config.duration = 3000
@ -368,17 +369,15 @@ export class EntryPlanLookComponent implements OnInit {
const dialogRef = this.dialog.open(editUpload, { const dialogRef = this.dialog.open(editUpload, {
width: "300px", width: "300px",
height: "150px", height: "200px",
data: { id: e.id, companyId: this.companyId, unitType: this.unitdata.unittype, unitName: this.unitdata.unitname }, data: { id: e.id, companyId: this.companyId, unitType: this.unitdata.unittype, unitName: this.unitdata.unitname },
disableClose: true disableClose: true
}); });
dialogRef.afterClosed().subscribe(data => { dialogRef.afterClosed().subscribe(data => {
this.getAllPlanComponents() this.getAllPlanComponents()
}) })
//this.lookPlan(e)
}/* ,err => { })
this.snackBar.open(err,'确定',config);
} */)
} }
} }
@ -931,7 +930,6 @@ export class AddPlanone {
} else { this.pswShow = false } } else { this.pswShow = false }
} else { this.pswShow = false } } else { this.pswShow = false }
// this.startUploading()
} }
//上传文件 //上传文件
@ -940,7 +938,6 @@ export class AddPlanone {
let file = this.file || null //获取上传的文件 let file = this.file || null //获取上传的文件
let fileSize = file.size || null //上传文件的总大小 let fileSize = file.size || null //上传文件的总大小
let shardSize = 5 * 1024 * 1024 //5MB一个分片 let shardSize = 5 * 1024 * 1024 //5MB一个分片
// console.log(this.psw)
if (file && fileSize <= shardSize) { //上传文件<=5MB时 if (file && fileSize <= shardSize) { //上传文件<=5MB时
let formData = new FormData() let formData = new FormData()
@ -1133,8 +1130,6 @@ export class AddPlanone {
website: boolean = false //网页地址 website: boolean = false //网页地址
inputNew: boolean = false //自定义编辑 inputNew: boolean = false //自定义编辑
next(formdata) { next(formdata) {
//console.log(formdata.value.firstCtrlthree)
//console.log(this.file)
this.psw = false this.psw = false
this.selectedPLanName = formdata.value.firstCtrlone this.selectedPLanName = formdata.value.firstCtrlone
this.selectedPLanType = formdata.value.firstCtrltwo this.selectedPLanType = formdata.value.firstCtrltwo
@ -1720,7 +1715,6 @@ export class editUpload {
let file = this.file || null //获取上传的文件 let file = this.file || null //获取上传的文件
let fileSize = file.size || null //上传文件的总大小 let fileSize = file.size || null //上传文件的总大小
let shardSize = 5 * 1024 * 1024 //5MB一个分片 let shardSize = 5 * 1024 * 1024 //5MB一个分片
// console.log(this.psw)
if (this.file != undefined) { if (this.file != undefined) {
if (file && fileSize <= shardSize) { //上传文件<=5MB时 if (file && fileSize <= shardSize) { //上传文件<=5MB时
let formData = new FormData() let formData = new FormData()
@ -1733,11 +1727,8 @@ export class editUpload {
let options = { let options = {
headers headers
}; };
this.uploadover = true this.uploadover = true
let level = sessionStorage.getItem("level") let level = sessionStorage.getItem("level")
// console.log(level)
let PlanLevel let PlanLevel
if (level == '0') { if (level == '0') {
PlanLevel = 1 PlanLevel = 1
@ -1765,9 +1756,12 @@ export class editUpload {
} else if (file && fileSize > shardSize) { //上传文件>5MB时,分块上传 } else if (file && fileSize > shardSize) { //上传文件>5MB时,分块上传
let data = { filename: file.name } let data = { filename: file.name }
//this.uploadisLoading = tru this.http.post(`/api/NewMultipartUpload/PlanPlatform/${this.data.companyId}/2D`, {}, { params: data }).subscribe((data: any) => { //初始化分段上传
this.subsectionUploading() this.objectName = data.objectName
this.uploadId = data.uploadId
this.uploadisLoading = true
this.subsectionUploading()
})
} }
} }
else { else {

20
src/app/plan-management/entry-plan-look/upLoad.html

@ -1,18 +1,20 @@
<div class="upload"> <div class="upload">
<div class="file"> <div class="file">
<button mat-raised-button color="primary" (click)='upload()'><img style="margin-bottom: 2px;" src="../../../assets/images/bendi.png"> 重新上传文件</button> <button mat-raised-button color="primary" (click)='upload()'><img style="margin-bottom: 2px;"
src="../../../assets/images/bendi.png"> 重新上传文件</button>
<input id="up" style="display: none;" type="file" (change)="filechange($event)" accept=".doc,.txt,.docx,.pdf"> <input id="up" style="display: none;" type="file" (change)="filechange($event)" accept=".doc,.txt,.docx,.pdf">
<label style="font-size: 10px;">{{file==undefined?'':file.name}}</label> <label style="font-size: 10px;">{{file==undefined?'':file.name}}</label>
</div> </div>
<!-- <div class="progressBox" *ngIf="uploadisLoading"> <div class="progressBox" *ngIf="uploadisLoading">
<span style="font-size: 13px;">上传中...</span> <span style="font-size: 13px;">上传中...</span>
<mat-progress-bar mode="determinate" [value]="uploadProgress" class="progress" style="width: 320px;left: 64px;"></mat-progress-bar> <mat-progress-bar mode="determinate" [value]="uploadProgress" class="progress" style="width: 150px;left: 64px;">
</mat-progress-bar>
</div> -->
</div>
<div style="margin-top: 20px;text-align: center;"> <div style="margin-top: 20px;text-align: center;">
<button mat-raised-button (click)="startUploading()" >确定</button> <button mat-raised-button (click)="startUploading()">确定</button>
<button mat-raised-button (click)="onNoClick()" style="margin-left: 10px;">取消</button> <button mat-raised-button (click)="onNoClick()" style="margin-left: 10px;">取消</button>
</div> </div>
</div> </div>
Loading…
Cancel
Save