diff --git a/src/views/trials/trials-panel/reading/dicoms/components/MRIPDFF/QuestionForm.vue b/src/views/trials/trials-panel/reading/dicoms/components/MRIPDFF/QuestionForm.vue
index 6044b0aa..8cc8d1f0 100644
--- a/src/views/trials/trials-panel/reading/dicoms/components/MRIPDFF/QuestionForm.vue
+++ b/src/views/trials/trials-panel/reading/dicoms/components/MRIPDFF/QuestionForm.vue
@@ -398,7 +398,7 @@ export default {
} else if (qs.QuestionMark === 1105) {
if (!v) {
let meanId = this.getQuestionId(1104)
- this.$set(this.questionForm, meanId, 'NA')
+ this.$set(this.questionForm, meanId, 'NE')
}
}
this.setQuestions()
@@ -428,7 +428,8 @@ export default {
// 维护标记信息
measureData.data.remark = this.getLesionName(this.orderMark, this.activeQuestionMark)
}
- this.$set(this.questionForm, measureData.tableQuestionId, measureData.data.cachedStats.mean)
+ let val = measureData.data.cachedStats.mean / 10
+ this.$set(this.questionForm, measureData.tableQuestionId, val.toFixed(this.digitPlaces))
data = {
Id: '',
StudyId: measureData.studyId,
@@ -743,7 +744,7 @@ export default {
let l3Id = this.getQuestionId(1103)
this.$set(this.questionForm, l3Id, '')
let meanId = this.getQuestionId(1104)
- this.$set(this.questionForm, meanId, 'NA')
+ this.$set(this.questionForm, meanId, 'NE')
}
const loading = this.$loading({ fullscreen: true })
@@ -839,6 +840,9 @@ export default {
/deep/ .el-button--mini, .el-button--mini.is-round {
padding: 7px 10px;
}
+ /deep/ .el-input-group__append, .el-input-group__prepend {
+ padding: 0 10px;
+ }
.el-form-item__content
.el-select{
width: 100%;
diff --git a/src/views/trials/trials-panel/reading/dicoms/components/MRIPDFF/QuestionList.vue b/src/views/trials/trials-panel/reading/dicoms/components/MRIPDFF/QuestionList.vue
index ce2be9a8..9496a11e 100644
--- a/src/views/trials/trials-panel/reading/dicoms/components/MRIPDFF/QuestionList.vue
+++ b/src/views/trials/trials-panel/reading/dicoms/components/MRIPDFF/QuestionList.vue
@@ -33,13 +33,13 @@
{{ item.QuestionName }}
-
+
- {{$t('trials:MRIPDFF:label:col1')}}
+ {{$t('trials:MRIPDFF:label:col1')}}
- {{$t('trials:MRIPDFF:label:col2')}}
+
- {{$t('trials:MRIPDFF:label:col3')}}
+ {{$t('trials:MRIPDFF:label:col3')}}
@@ -67,14 +67,14 @@
-
+
-
-
+
+
+
+ {{ isNaN(parseFloat(item.TableQuestions.Answers[i].mean)) ? item.TableQuestions.Answers[i].mean : `${item.TableQuestions.Answers[i].mean}%` }}
diff --git a/src/views/trials/trials-panel/reading/reading-tracking/components/ReviewResults.vue b/src/views/trials/trials-panel/reading/reading-tracking/components/ReviewResults.vue
index f63d9a17..27e0a26b 100644
--- a/src/views/trials/trials-panel/reading/reading-tracking/components/ReviewResults.vue
+++ b/src/views/trials/trials-panel/reading/reading-tracking/components/ReviewResults.vue
@@ -20,25 +20,6 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/src/views/trials/trials-panel/reading/reading-tracking/components/configList.vue b/src/views/trials/trials-panel/reading/reading-tracking/components/configList.vue
index 012b8568..bbbf1780 100644
--- a/src/views/trials/trials-panel/reading/reading-tracking/components/configList.vue
+++ b/src/views/trials/trials-panel/reading/reading-tracking/components/configList.vue
@@ -1,6 +1,9 @@
- 提交
+
+
+ {{ $t('common:button:save') }}
+
+
+ :key="item.Code"
+ :label="$i18n.locale === 'zh' ? item.ValueCN : item.Value">
changeState(scope, item.Code)"
@@ -26,16 +30,15 @@
-
+
@@ -54,10 +57,6 @@ export default {
type: String,
required: true
},
- exportType: {
- type: Number,
- required: true
- }
},
data() {
return {
@@ -74,8 +73,7 @@ export default {
this.loading = true
let res = await getTrialQuestionExportResult(
{
- trialReadingCriterionId: this.trialReadingCriterionId,
- exportType: this.exportType
+ trialReadingCriterionId: this.trialReadingCriterionId
}
)
if (res.IsSuccess) {
@@ -91,7 +89,6 @@ export default {
this.loading = true
try {
let params= {
- exportType: this.exportType,
questionList: [],
tableQuestionList: []
}
diff --git a/src/views/trials/trials-panel/reading/reading-tracking/index.vue b/src/views/trials/trials-panel/reading/reading-tracking/index.vue
index d112f98e..57151f17 100644
--- a/src/views/trials/trials-panel/reading/reading-tracking/index.vue
+++ b/src/views/trials/trials-panel/reading/reading-tracking/index.vue
@@ -110,6 +110,10 @@
{{ $t('common:button:export') }}
+
+
+ {{ $t('trials:readingTracking:button:reviewResults') }}
+
{{ $t('common:button:failureRecord') }}
@@ -943,6 +947,9 @@