|
@@ -258,7 +258,11 @@ export default {
|
|
|
this.$emit('update:dialogVisible',false)
|
|
|
},
|
|
|
submitUpload() {
|
|
|
+ if(this.$refs.upload.uploadFiles==undefined||this.$refs.upload.uploadFiles.length ==0){
|
|
|
+ this.submitCommit('');
|
|
|
+ }else{
|
|
|
this.$refs.upload.submit();
|
|
|
+ }
|
|
|
},
|
|
|
uploadSuccess (response, file, fileList) {
|
|
|
console.log('上传文件', response,file, fileList)
|
|
@@ -419,7 +423,7 @@ export default {
|
|
|
commitCount:dataArr[i].EVALUATE_ALL_NUM, //评价总数
|
|
|
badCommitCount:dataArr[i].EVALUATE_CP_NUM, //差评数
|
|
|
badCommitInterest:dataArr[i].EVALUATE_CPL, //差评率
|
|
|
- appendix:dataArr[i].ENCLOSURE.substr(dataArr[i].ENCLOSURE.lastIndexOf('/')), //附件
|
|
|
+ appendix: dataArr[i].ENCLOSURE!==undefined?dataArr[i].ENCLOSURE.substr(dataArr[i].ENCLOSURE.lastIndexOf('/')):'', //附件
|
|
|
changeContent:dataArr[i].RECTIFICATION_PLAN, //整改内容
|
|
|
reasonList:this.setReasonList(dataArr[i].REASON)
|
|
|
}
|