|
@@ -269,8 +269,8 @@
|
|
|
detailFor70: []
|
|
|
},
|
|
|
yesOrNo: [
|
|
|
- {value: 0, label: '否'},
|
|
|
- {value: 1, label: '是'}
|
|
|
+ {value: 0, label: '×'},
|
|
|
+ {value: 1, label: '√'}
|
|
|
]
|
|
|
}
|
|
|
},
|
|
@@ -316,7 +316,7 @@
|
|
|
this.loading = false
|
|
|
this.$nextTick(() => {
|
|
|
this.loading = true
|
|
|
- this.proofreadInfoService.findById(id).then(({data}) => {
|
|
|
+ this.proofreadInfoService.findById(id, '2').then(({data}) => {
|
|
|
if (!this.commonJS.isEmpty(data.projectId)) {
|
|
|
this.$refs.inputForm.resetFields()
|
|
|
this.inputForm = this.recover(this.inputForm, data)
|
|
@@ -353,6 +353,7 @@
|
|
|
this.inputForm.detailFor50.forEach(item => { this.inputForm.details.push(item) })
|
|
|
this.inputForm.detailFor60.forEach(item => { this.inputForm.details.push(item) })
|
|
|
this.inputForm.detailFor70.forEach(item => { this.inputForm.details.push(item) })
|
|
|
+ this.inputForm.type = '2'
|
|
|
this.proofreadInfoService.save(this.inputForm).then(({data}) => {
|
|
|
this.close()
|
|
|
this.$message.success(data)
|