|
|
@ -22,7 +22,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
<el-tag v-else :type="row.indexResult === 'true' ? 'success' : 'error'">{{ row.indexResult?row.indexResult=== 'true' ? '符合' : '不符合': '未评估' }}</el-tag>
|
|
|
|
<el-tag v-else :type="row.indexResult === 'true' ? 'success' : 'error'">{{ row.indexResult?row.indexResult=== 'true' ? '符合' : '不符合': '未评估' }}</el-tag>
|
|
|
|
|
|
|
|
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
</vxe-grid>
|
|
|
|
</vxe-grid>
|
|
|
|
<div style="text-align: center">
|
|
|
|
<div style="text-align: center">
|
|
|
|
<cs-page
|
|
|
|
<cs-page
|
|
|
@ -64,13 +64,13 @@ export default {
|
|
|
|
columns: [
|
|
|
|
columns: [
|
|
|
|
{ title: '', width: '50px', treeNode: true },
|
|
|
|
{ title: '', width: '50px', treeNode: true },
|
|
|
|
{ title: '序号', type: 'seq', width: '50px' },
|
|
|
|
{ title: '序号', type: 'seq', width: '50px' },
|
|
|
|
|
|
|
|
{ title: '分析结果', width: '200px', field: 'indexResult', slots: { default: 'result' }},
|
|
|
|
{ title: '指标名称', field: 'indexName', align: 'left' },
|
|
|
|
{ title: '指标名称', field: 'indexName', align: 'left' },
|
|
|
|
{ title: '分值', field: 'score' },
|
|
|
|
{ title: '分值', width: '200px', field: 'score' },
|
|
|
|
{ title: '数据来源', field: 'indexSource', 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: '笔录结果', field: 'record' },
|
|
|
|
{ title: '笔录结果', field: 'record' }
|
|
|
|
{ title: '分析结果', field: 'indexResult', slots: { default: 'result' }}
|
|
|
|
|
|
|
|
// { title: '原子指标', field: 'atomicIndex' }
|
|
|
|
// { title: '原子指标', field: 'atomicIndex' }
|
|
|
|
// { title: '必要证据', field: 'questioner' },
|
|
|
|
// { title: '必要证据', field: 'questioner' },
|
|
|
|
// { title: '评估结果', field: 'startTime' },
|
|
|
|
// { title: '评估结果', field: 'startTime' },
|
|
|
|