|
|
@ -94,12 +94,12 @@ export default {
|
|
|
|
{ title: '', width: '50px', treeNode: true },
|
|
|
|
{ title: '', width: '50px', treeNode: true },
|
|
|
|
{ title: '序号', type: 'seq', width: '80px' },
|
|
|
|
{ title: '序号', type: 'seq', width: '80px' },
|
|
|
|
{ title: '分析结果', width: '200px', field: 'indexResult', slots: { default: 'result' }},
|
|
|
|
{ title: '分析结果', width: '200px', field: 'indexResult', slots: { default: 'result' }},
|
|
|
|
|
|
|
|
{ title: '笔录结果', width: '200px', slots: { default: 'operate' }, align: 'center' },
|
|
|
|
{ title: '指标名称', field: 'indexName', align: 'left' },
|
|
|
|
{ title: '指标名称', field: 'indexName', align: 'left' },
|
|
|
|
{ title: '分值', width: '200px', field: 'score' },
|
|
|
|
{ title: '分值', width: '200px', field: 'score' },
|
|
|
|
{ title: '数据来源', field: 'indexSource', width: '200px', formatter: ({ cellValue }) => {
|
|
|
|
{ title: '数据来源', field: 'indexSource', width: '200px', formatter: ({ cellValue }) => {
|
|
|
|
return cellValue ? this.indexSourceList.find(item => item.value === cellValue).label : ''
|
|
|
|
return cellValue ? this.indexSourceList.find(item => item.value === cellValue).label : ''
|
|
|
|
} },
|
|
|
|
} }
|
|
|
|
{ title: '笔录结果', width: '200px', slots: { default: 'operate' }, align: 'center' }
|
|
|
|
|
|
|
|
// { title: '原子指标', field: 'atomicIndex' }
|
|
|
|
// { title: '原子指标', field: 'atomicIndex' }
|
|
|
|
// { title: '必要证据', field: 'questioner' },
|
|
|
|
// { title: '必要证据', field: 'questioner' },
|
|
|
|
// { title: '评估结果', field: 'startTime' },
|
|
|
|
// { title: '评估结果', field: 'startTime' },
|
|
|
@ -152,15 +152,13 @@ export default {
|
|
|
|
fetchData() {
|
|
|
|
fetchData() {
|
|
|
|
const params = { caseId: this.$route.params['id'],
|
|
|
|
const params = { caseId: this.$route.params['id'],
|
|
|
|
indexType: '2',
|
|
|
|
indexType: '2',
|
|
|
|
page: this.queryForm.page,
|
|
|
|
|
|
|
|
size: this.queryForm.size,
|
|
|
|
|
|
|
|
indexName: this.indexName,
|
|
|
|
indexName: this.indexName,
|
|
|
|
indexResult: this.indexResult,
|
|
|
|
indexResult: this.indexResult,
|
|
|
|
indexHasRecord: this.indexHasRecord,
|
|
|
|
indexHasRecord: this.indexHasRecord,
|
|
|
|
atomicName: this.atomicName,
|
|
|
|
atomicName: this.atomicName,
|
|
|
|
indexSource: this.indexSource
|
|
|
|
indexSource: this.indexSource
|
|
|
|
}
|
|
|
|
}
|
|
|
|
queryIndexDetail(params).then(res => {
|
|
|
|
queryIndexDetail(params, this.queryForm.page, this.queryForm.size).then(res => {
|
|
|
|
this.gridOptions.data = res.data.records
|
|
|
|
this.gridOptions.data = res.data.records
|
|
|
|
this.queryForm.total = res.data.total
|
|
|
|
this.queryForm.total = res.data.total
|
|
|
|
})
|
|
|
|
})
|
|
|
|