自动分类问题更改
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
6714d2a3c2
commit
bc6f15388d
|
@ -107,7 +107,7 @@
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="IsShowInDicom"
|
prop="IsShowInDicom"
|
||||||
label="是否在阅片页面显示"
|
label="是否在阅片页面显示"
|
||||||
width="140"
|
width="150"
|
||||||
show-overflow-tooltip
|
show-overflow-tooltip
|
||||||
>
|
>
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
|
@ -132,7 +132,7 @@
|
||||||
{{ $fd('GlobalReadingShowType', scope.row.GlobalReadingShowType) }}
|
{{ $fd('GlobalReadingShowType', scope.row.GlobalReadingShowType) }}
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<!-- 导出标识 -->
|
<!-- 导出标识 -->
|
||||||
<!-- <el-table-column
|
<!-- <el-table-column
|
||||||
prop="ExportIdentification"
|
prop="ExportIdentification"
|
||||||
:label="$t('trials:readingUnit:qsList:title:ExportIdentification')"
|
:label="$t('trials:readingUnit:qsList:title:ExportIdentification')"
|
||||||
|
@ -143,6 +143,17 @@
|
||||||
{{ $fd('ExportIdentification', scope.row.ExportIdentification) }}
|
{{ $fd('ExportIdentification', scope.row.ExportIdentification) }}
|
||||||
</template>
|
</template>
|
||||||
</el-table-column> -->
|
</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
|
<el-table-column
|
||||||
prop="ExportResult"
|
prop="ExportResult"
|
||||||
|
|
|
@ -122,6 +122,17 @@
|
||||||
{{ $fd('ExportIdentification', scope.row.ExportIdentification) }}
|
{{ $fd('ExportIdentification', scope.row.ExportIdentification) }}
|
||||||
</template>
|
</template>
|
||||||
</el-table-column> -->
|
</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
|
<el-table-column
|
||||||
prop="ExportResult"
|
prop="ExportResult"
|
||||||
|
|
|
@ -1142,7 +1142,7 @@ export default {
|
||||||
}
|
}
|
||||||
this.initForm()
|
this.initForm()
|
||||||
this.getBasicConfigSelect()
|
this.getBasicConfigSelect()
|
||||||
this.getCalculateQuestions(['number', 'select', 'radio', 'basicTable'])
|
this.getCalculateQuestions(['number', 'select', 'radio', 'class', 'basicTable'])
|
||||||
// this.getTableQuestions()
|
// this.getTableQuestions()
|
||||||
// this.getCalculateQuestions('number')
|
// this.getCalculateQuestions('number')
|
||||||
// this.getCalculateQuestions('table')
|
// this.getCalculateQuestions('table')
|
||||||
|
@ -1243,7 +1243,7 @@ export default {
|
||||||
let res = await getCalculateQuestions(params)
|
let res = await getCalculateQuestions(params)
|
||||||
if (res.Result) {
|
if (res.Result) {
|
||||||
this.tableQuestions = res.Result.filter(i=>i.Type === 'basicTable')
|
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')
|
this.numberQuestions = res.Result.filter(i=>i.Type === 'number')
|
||||||
}
|
}
|
||||||
} catch(e) {
|
} catch(e) {
|
||||||
|
|
|
@ -980,7 +980,7 @@ export default {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
this.initForm()
|
this.initForm()
|
||||||
this.getCalculateTableQuestions(['number', 'select', 'radio', 'basicTable'])
|
this.getCalculateTableQuestions(['number', 'select', 'radio', 'class', 'basicTable'])
|
||||||
// this.getCalculateTableQuestions('number')
|
// this.getCalculateTableQuestions('number')
|
||||||
// this.getCalculateTableQuestions('table')
|
// this.getCalculateTableQuestions('table')
|
||||||
},
|
},
|
||||||
|
@ -994,7 +994,7 @@ export default {
|
||||||
let res = await getCalculateTableQuestions(params)
|
let res = await getCalculateTableQuestions(params)
|
||||||
if (res.Result) {
|
if (res.Result) {
|
||||||
this.tableQuestions = res.Result.filter(i=>i.Type === 'basicTable')
|
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')
|
this.numberQuestions = res.Result.filter(i=>i.Type === 'number')
|
||||||
}
|
}
|
||||||
} catch(e) {
|
} catch(e) {
|
||||||
|
|
Loading…
Reference in New Issue