|
|
|
@ -191,28 +191,15 @@ export default { |
|
|
|
|
quill |
|
|
|
|
}, |
|
|
|
|
mounted() { |
|
|
|
|
this.getData(); |
|
|
|
|
this.getData() |
|
|
|
|
}, |
|
|
|
|
methods: { |
|
|
|
|
getData() { // 查询详情 |
|
|
|
|
this.$get(`${this.api.reportDetail}?reportId=${this.reportId}`).then(res => { |
|
|
|
|
this.form = res.report |
|
|
|
|
const list = res.userScores |
|
|
|
|
this.project = list.find(e => e.lcRuleRecords) // 银行系统才有lcRuleRecords |
|
|
|
|
let form = this.form |
|
|
|
|
form.className = this.className |
|
|
|
|
if (this.project) { |
|
|
|
|
list.map(e => { |
|
|
|
|
e.assessmentPoint = '' |
|
|
|
|
e.referenceAnswer = '' |
|
|
|
|
e.answer = '' |
|
|
|
|
e.lcRuleRecords.map((n, i) => { |
|
|
|
|
e.assessmentPoint += `${i + 1}.${n.name}` |
|
|
|
|
e.referenceAnswer += `${i + 1}.${n.ruleAnswer}` |
|
|
|
|
e.answer += `${i + 1}.${n.userAnswer}` |
|
|
|
|
}) |
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
const { reportId } = this |
|
|
|
|
this.$get(`${this.api.reportDetail}?reportId=${reportId}`).then(({ report, userScores }) => { |
|
|
|
|
this.form = report |
|
|
|
|
const form = this.form |
|
|
|
|
|
|
|
|
|
this.infoData = { |
|
|
|
|
workNumber: form.workNumber, |
|
|
|
|
experimentalClassName: form.experimentalClassName, |
|
|
|
@ -223,11 +210,40 @@ export default { |
|
|
|
|
score: form.score, |
|
|
|
|
userName: form.userName |
|
|
|
|
} |
|
|
|
|
this.expData = list |
|
|
|
|
form.assessmentId && (this.breadPath = ['实验记录', '实验报告']) |
|
|
|
|
const data = report.data |
|
|
|
|
// 如果没有data,则添加,否则,直接使用 |
|
|
|
|
if (!data) { |
|
|
|
|
this.handleList(userScores) |
|
|
|
|
this.$post(this.api.editExperimentalData, { |
|
|
|
|
reportId, |
|
|
|
|
data: JSON.stringify(userScores) |
|
|
|
|
}).then(res => {}).catch(err => {}) |
|
|
|
|
} else { |
|
|
|
|
this.handleList(JSON.parse(data)) |
|
|
|
|
} |
|
|
|
|
}).catch(res => {}) |
|
|
|
|
}, |
|
|
|
|
// 处理实验数据 |
|
|
|
|
handleList(list) { |
|
|
|
|
this.project = list.find(e => e.lcRuleRecords) // 银行系统才有lcRuleRecords |
|
|
|
|
this.form.className = this.className |
|
|
|
|
if (this.project) { |
|
|
|
|
list.map(e => { |
|
|
|
|
e.assessmentPoint = '' |
|
|
|
|
e.referenceAnswer = '' |
|
|
|
|
e.answer = '' |
|
|
|
|
e.lcRuleRecords.map((n, i) => { |
|
|
|
|
e.assessmentPoint += `${i + 1}.${n.name}` |
|
|
|
|
e.referenceAnswer += `${i + 1}.${n.ruleAnswer}` |
|
|
|
|
e.answer += `${i + 1}.${n.userAnswer}` |
|
|
|
|
}) |
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
this.expData = list |
|
|
|
|
}, |
|
|
|
|
exportPage() { |
|
|
|
|
return |
|
|
|
|
const form = JSON.parse(JSON.stringify(this.form)) |
|
|
|
|
const list = JSON.parse(JSON.stringify(this.expData)) |
|
|
|
|
list.map((e, i) => { |
|
|
|
|