From 5506edbe54883b31db3cc8e4a1d9d0795a18a3c9 Mon Sep 17 00:00:00 2001 From: jiangping <jp@doumee.com> Date: 星期五, 27 十二月 2024 14:37:54 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/2.0.1' into 2.0.1 --- company/src/components/business/OperaApplyChangeUnitCheckWindow.vue | 34 ++++++++++++++++++++++++---------- 1 files changed, 24 insertions(+), 10 deletions(-) diff --git a/company/src/components/business/OperaApplyChangeUnitCheckWindow.vue b/company/src/components/business/OperaApplyChangeUnitCheckWindow.vue index 61c3a72..bcae577 100644 --- a/company/src/components/business/OperaApplyChangeUnitCheckWindow.vue +++ b/company/src/components/business/OperaApplyChangeUnitCheckWindow.vue @@ -54,7 +54,7 @@ <div class="form_item"> <div class="form_item_label">涓婁紶鎵瑰崟锛�</div> <div class="form_item_val"> - <UploadFile :uploadData="{ folder: 'apply',fileType:'.pdf' }" :fileList="form.fileList1" @uploadSuccess="baoxianFileUploaded" /> + <UploadFile :uploadData="{ folder: 'apply',fileType:'.pdf' }" :limit="99" :fileList="form.fileList1" @remove="removePIDAN" @uploadSuccess="baoxianFileUploaded" /> </div> </div> </div> @@ -73,7 +73,7 @@ <div class="form_item"> <div class="form_item_label"><span>*</span>涓婁紶鎵瑰崟锛�</div> <div class="form_item_val"> - <UploadFile :uploadData="{ folder: 'apply',fileType:'.pdf' }" :fileList="form.fileList2" @uploadSuccess="editBaoxianFileUploaded" /> + <UploadFile :uploadData="{ folder: 'apply',fileType:'.pdf' }" :limit="99" @remove="removeEditPiDan" :fileList="form.fileList2" @uploadSuccess="editBaoxianFileUploaded" /> </div> </div> <div class="form_item"> @@ -135,8 +135,8 @@ editValidCode: '', applyStartTime:null, validCode:null, - pidanFile:null, - editPidanFile:null, + pidanFile:[], + editPidanFile:[], fileList1: [], fileList2: [], selectRadio:0 @@ -166,8 +166,8 @@ editValidCode: '', applyStartTime:null, validCode:null, - pidanFile:null, - editPidanFile:null, + pidanFile:[], + editPidanFile:[], fileList1: [], fileList2: [], selectRadio:0 @@ -219,11 +219,25 @@ } }, baoxianFileUploaded(data){ - this.form.pidanFile=data + this.form.pidanFile.push(data) }, + removePIDAN(e) { + this.form.pidanFile.forEach((item, index) => { + if (item.imgaddr === e) { + this.form.pidanFile.splice(index, 1) + } + }) + }, editBaoxianFileUploaded(data){ - this.form.editPidanFile=data + this.form.editPidanFile.push(data) }, + removeEditPiDan(imgaddr) { + this.form.editPidanFile.forEach((item, index) => { + if (imgaddr === item.imgaddr) { + this.form.editPidanFile.splice(index, 1) + } + }) + }, backDo(){ this.$dialog.messageConfirm('纭杩涜璇ユ搷浣滃悧锛�') .then(() => { @@ -254,7 +268,7 @@ this.$dialog.messageConfirm('纭杩涜璇ユ搷浣滃悧锛�') .then(() => { this.isWorking = true - uploadChangePidan({id:this.model.id,applyStartTime:this.form.applyStartTime, validCode:this.form.validCode,pidanFile:this.form.pidanFile}) + uploadChangePidan({id:this.model.id,applyStartTime:this.form.applyStartTime, validCode:this.form.validCode,pidanFileList:this.form.pidanFile}) .then(response => { this.visible = false this.$emit('success') @@ -268,7 +282,7 @@ this.$dialog.messageConfirm('纭杩涜璇ユ搷浣滃悧锛�') .then(() => { this.isWorking = true - editChangePidan({id:this.model.id, checkInfo:this.form.editCheckInfo,validCode:this.form.editValidCode,pidanFile:this.form.editPidanFile}) + editChangePidan({id:this.model.id, checkInfo:this.form.editCheckInfo,validCode:this.form.editValidCode,pidanFileList:this.form.editPidanFile}) .then(response => { this.visible = false this.$emit('success') -- Gitblit v1.9.3