@@ -107,7 +107,7 @@
|
||||
<el-table-column
|
||||
prop="IsShowInDicom"
|
||||
label="是否在阅片页面显示"
|
||||
width="140"
|
||||
width="150"
|
||||
show-overflow-tooltip
|
||||
>
|
||||
<template slot-scope="scope">
|
||||
@@ -132,7 +132,7 @@
|
||||
{{ $fd('GlobalReadingShowType', scope.row.GlobalReadingShowType) }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<!-- 导出标识 -->
|
||||
<!-- 导出标识 -->
|
||||
<!-- <el-table-column
|
||||
prop="ExportIdentification"
|
||||
:label="$t('trials:readingUnit:qsList:title:ExportIdentification')"
|
||||
@@ -143,6 +143,17 @@
|
||||
{{ $fd('ExportIdentification', scope.row.ExportIdentification) }}
|
||||
</template>
|
||||
</el-table-column> -->
|
||||
<!-- 问题标识 -->
|
||||
<el-table-column
|
||||
prop="QuestionType"
|
||||
label="问题标识"
|
||||
width="140"
|
||||
show-overflow-tooltip
|
||||
>
|
||||
<template slot-scope="scope">
|
||||
{{ $fd('QuestionType', scope.row.QuestionType) }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<!-- 导出目标表格 -->
|
||||
<el-table-column
|
||||
prop="ExportResult"
|
||||
|
||||
@@ -122,6 +122,17 @@
|
||||
{{ $fd('ExportIdentification', scope.row.ExportIdentification) }}
|
||||
</template>
|
||||
</el-table-column> -->
|
||||
<!-- 问题标识 -->
|
||||
<el-table-column
|
||||
prop="QuestionMark"
|
||||
label="问题标识"
|
||||
width="140"
|
||||
show-overflow-tooltip
|
||||
>
|
||||
<template slot-scope="scope">
|
||||
{{ $fd('QuestionMark', scope.row.QuestionMark) }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<!-- 导出目标表格 -->
|
||||
<el-table-column
|
||||
prop="ExportResult"
|
||||
|
||||
@@ -1142,7 +1142,7 @@ export default {
|
||||
}
|
||||
this.initForm()
|
||||
this.getBasicConfigSelect()
|
||||
this.getCalculateQuestions(['number', 'select', 'radio', 'basicTable'])
|
||||
this.getCalculateQuestions(['number', 'select', 'radio', 'class', 'basicTable'])
|
||||
// this.getTableQuestions()
|
||||
// this.getCalculateQuestions('number')
|
||||
// this.getCalculateQuestions('table')
|
||||
@@ -1243,7 +1243,7 @@ export default {
|
||||
let res = await getCalculateQuestions(params)
|
||||
if (res.Result) {
|
||||
this.tableQuestions = res.Result.filter(i=>i.Type === 'basicTable')
|
||||
this.selectQuestions = res.Result.filter(i=>i.Type === 'select' || i.Type === 'radio')
|
||||
this.selectQuestions = res.Result.filter(i=>i.Type === 'select' || i.Type === 'radio' || i.Type === 'class')
|
||||
this.numberQuestions = res.Result.filter(i=>i.Type === 'number')
|
||||
}
|
||||
} catch(e) {
|
||||
|
||||
@@ -980,7 +980,7 @@ export default {
|
||||
}
|
||||
}
|
||||
this.initForm()
|
||||
this.getCalculateTableQuestions(['number', 'select', 'radio', 'basicTable'])
|
||||
this.getCalculateTableQuestions(['number', 'select', 'radio', 'class', 'basicTable'])
|
||||
// this.getCalculateTableQuestions('number')
|
||||
// this.getCalculateTableQuestions('table')
|
||||
},
|
||||
@@ -994,7 +994,7 @@ export default {
|
||||
let res = await getCalculateTableQuestions(params)
|
||||
if (res.Result) {
|
||||
this.tableQuestions = res.Result.filter(i=>i.Type === 'basicTable')
|
||||
this.selectQuestions = res.Result.filter(i=>i.Type === 'select' || i.Type === 'radio')
|
||||
this.selectQuestions = res.Result.filter(i=>i.Type === 'select' || i.Type === 'radio' || i.Type === 'class')
|
||||
this.numberQuestions = res.Result.filter(i=>i.Type === 'number')
|
||||
}
|
||||
} catch(e) {
|
||||
|
||||
Reference in New Issue
Block a user