Merge branch 'main' of https://gitea.frp.extimaging.com/XCKJ/irc_web into main
commit
5edd252a12
|
@ -651,7 +651,7 @@ export default {
|
|||
try {
|
||||
resArray.forEach(v => {
|
||||
if (v.DoctorCriterionStatusList && v.DoctorCriterionStatusList.length === 0) {
|
||||
this.isConsistencyChange(v, null,false, false)
|
||||
this.isConsistencyChange(v, null,true, false)
|
||||
}
|
||||
v.CriterionCategoryList.forEach(v1 => {
|
||||
let o = v.DoctorCriterionStatusList.find(v2 => {
|
||||
|
|
|
@ -36,17 +36,17 @@
|
|||
show-overflow-tooltip
|
||||
/>
|
||||
<!-- 是否受到退回影响 -->
|
||||
<el-table-column
|
||||
prop="IsReReadingOrBackInfluenceAnalysis"
|
||||
:label="$t('trials:grouptConsistencyAnalysis:table:backImpact')"
|
||||
min-width="160"
|
||||
sortable="custom"
|
||||
show-overflow-tooltip>
|
||||
<template slot-scope="scope">
|
||||
<el-tag v-if="!scope.row.IsReReadingOrBackInfluenceAnalysis" type="danger">{{ $fd('YesOrNo', scope.row.IsReReadingOrBackInfluenceAnalysis) }}</el-tag>
|
||||
<el-tag v-if="scope.row.IsReReadingOrBackInfluenceAnalysis" type="primary">{{ $fd('YesOrNo', scope.row.IsReReadingOrBackInfluenceAnalysis) }}</el-tag>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<!-- <el-table-column-->
|
||||
<!-- prop="IsReReadingOrBackInfluenceAnalysis"-->
|
||||
<!-- :label="$t('trials:grouptConsistencyAnalysis:table:backImpact')"-->
|
||||
<!-- min-width="160"-->
|
||||
<!-- sortable="custom"-->
|
||||
<!-- show-overflow-tooltip>-->
|
||||
<!-- <template slot-scope="scope">-->
|
||||
<!-- <el-tag v-if="!scope.row.IsReReadingOrBackInfluenceAnalysis" type="danger">{{ $fd('YesOrNo', scope.row.IsReReadingOrBackInfluenceAnalysis) }}</el-tag>-->
|
||||
<!-- <el-tag v-if="scope.row.IsReReadingOrBackInfluenceAnalysis" type="primary">{{ $fd('YesOrNo', scope.row.IsReReadingOrBackInfluenceAnalysis) }}</el-tag>-->
|
||||
<!-- </template>-->
|
||||
<!-- </el-table-column>-->
|
||||
</el-table>
|
||||
|
||||
<!-- 分页组件 -->
|
||||
|
|
|
@ -27,6 +27,18 @@
|
|||
sortable="custom"
|
||||
show-overflow-tooltip
|
||||
/>
|
||||
<!-- 原阅片人 -->
|
||||
<el-table-column
|
||||
prop="SubjectCode"
|
||||
:label="$t('trials:grouptConsistencyAnalysis:table:DoctorUserList')"
|
||||
min-width="120"
|
||||
sortable="custom"
|
||||
show-overflow-tooltip
|
||||
>
|
||||
<template slot-scope="scope">
|
||||
{{scope.row.DoctorUserList.map(v => {return `${v.UserName} (${v.FullName})`}).join(', ')}}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<!-- 符合规则访视数 -->
|
||||
<el-table-column
|
||||
prop="ValidVisitCount"
|
||||
|
|
|
@ -192,8 +192,8 @@ export default {
|
|||
this.form[k] = res.Result[k]
|
||||
}
|
||||
}
|
||||
this.isSign = res.Result.IsSign
|
||||
}
|
||||
this.isSign = res.Result.IsSign
|
||||
this.form.OncologyAssessIdsStr = this.form.OncologyAssessIds.map(v => this.$fd('OncologyAssessType', v, 'id')).toString()
|
||||
this.loading = false
|
||||
}).catch(() => {
|
||||
|
|
|
@ -317,15 +317,34 @@ export default {
|
|||
}
|
||||
trialReadingInfoSign(params).then(res => {
|
||||
if (res.IsSuccess) {
|
||||
this.$message.success(this.$t('common:message:savedSuccessfully'))
|
||||
this.$refs['signForm'].btnLoading = false
|
||||
this.signVisible = false
|
||||
this.isConfirm = true
|
||||
this.$refs['readingRules' + this.TrialReadingCriterionId][0].initPage()
|
||||
this.$refs['readingCriterions' + this.TrialReadingCriterionId][0].initPage()
|
||||
this.$refs['arbitrationRules' + this.TrialReadingCriterionId][0].getList()
|
||||
this.$refs['globalReading' + this.TrialReadingCriterionId][0].initForm()
|
||||
this.$refs['oncologyForm' + this.TrialReadingCriterionId][0].initForm()
|
||||
try {
|
||||
this.$message.success(this.$t('common:message:savedSuccessfully'))
|
||||
this.isConfirm = true
|
||||
try {
|
||||
this.$refs['readingRules' + this.TrialReadingCriterionId][0].initPage()
|
||||
} catch (e) {
|
||||
}
|
||||
try {
|
||||
this.$refs['readingCriterions' + this.TrialReadingCriterionId][0].initPage()
|
||||
} catch (e) {
|
||||
}
|
||||
try {
|
||||
this.$refs['arbitrationRules' + this.TrialReadingCriterionId][0].getList()
|
||||
} catch (e) {
|
||||
}
|
||||
try {
|
||||
this.$refs['globalReading' + this.TrialReadingCriterionId][0].initForm()
|
||||
} catch (e) {
|
||||
}
|
||||
try {
|
||||
this.$refs['oncologyForm' + this.TrialReadingCriterionId][0].initForm()
|
||||
} catch (e) {
|
||||
}
|
||||
this.$refs['signForm'].btnLoading = false
|
||||
this.signVisible = false
|
||||
} catch (e) {
|
||||
console.log(e)
|
||||
}
|
||||
}
|
||||
this.loading = false
|
||||
}).catch(_ => {
|
||||
|
|
Loading…
Reference in New Issue