|
@@ -473,7 +473,7 @@ export default {
|
|
|
defaultApplicationFileList: [],
|
|
|
defaultCheckFileList: [],
|
|
|
applicationFileList: [], // 报修图片
|
|
|
- checkFileList: [], // 审核图片
|
|
|
+ reportFileList: [], // 审核图片
|
|
|
repairFileList: [], // 维修图片,
|
|
|
repairDeptMap: {},
|
|
|
refusedFlag: false,
|
|
@@ -543,10 +543,10 @@ export default {
|
|
|
this.modalTitle = '编辑'
|
|
|
this.applicationFileList = record.applicationFileList
|
|
|
this.repairFileList = record.repairFileList
|
|
|
- this.checkFileList = record.checkFileList
|
|
|
+ this.reportFileList = record.reportFileList
|
|
|
this.defaultApplicationFileList = this.BaseTool.UPLOAD.transImg(this.applicationFileList)
|
|
|
this.defaultRepairFileList = this.BaseTool.UPLOAD.transImg(this.repairFileList)
|
|
|
- this.defaultCheckFileList = this.BaseTool.UPLOAD.transImg(this.checkFileList)
|
|
|
+ this.defaultCheckFileList = this.BaseTool.UPLOAD.transImg(this.reportFileList)
|
|
|
if (record.status === this.DictCache.VALUE.REPAIR_APPLICATION_FORM_STATUS.REFUSED_REPAIR) {
|
|
|
this.refusedFlag = true
|
|
|
}
|
|
@@ -642,7 +642,7 @@ export default {
|
|
|
values.repairProfessor = values.repairProfessor.join(',')
|
|
|
values.repairType = values.repairType.join(',')
|
|
|
values.applicationFileList = this.applicationFileList
|
|
|
- values.checkFileList = this.checkFileList
|
|
|
+ values.reportFileList = this.reportFileList
|
|
|
values.sbPosition = values.sbPosition.join('->')
|
|
|
console.log(values)
|
|
|
if (values.partId === undefined) {
|
|
@@ -729,7 +729,7 @@ export default {
|
|
|
},
|
|
|
handleCheckFileChange (info) {
|
|
|
this.defaultCheckFileList = info.fileList
|
|
|
- this.checkFileList = this.setFileList(info, 32)
|
|
|
+ this.reportFileList = this.setFileList(info, 32)
|
|
|
},
|
|
|
handleApplicationFileChange (info) {
|
|
|
this.defaultApplicationFileList = info.fileList
|