熊飞 2024-03-13 10:50:24 +08:00
parent 0928fef04c
commit 8afaf8a39e
3 changed files with 40 additions and 21 deletions

View File

@ -36,17 +36,17 @@
show-overflow-tooltip show-overflow-tooltip
/> />
<!-- 是否受到退回影响 --> <!-- 是否受到退回影响 -->
<el-table-column <!-- <el-table-column-->
prop="IsReReadingOrBackInfluenceAnalysis" <!-- prop="IsReReadingOrBackInfluenceAnalysis"-->
:label="$t('trials:grouptConsistencyAnalysis:table:backImpact')" <!-- :label="$t('trials:grouptConsistencyAnalysis:table:backImpact')"-->
min-width="160" <!-- min-width="160"-->
sortable="custom" <!-- sortable="custom"-->
show-overflow-tooltip> <!-- show-overflow-tooltip>-->
<template slot-scope="scope"> <!-- <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="danger">{{ $fd('YesOrNo', scope.row.IsReReadingOrBackInfluenceAnalysis) }}</el-tag>-->
<el-tag v-if="scope.row.IsReReadingOrBackInfluenceAnalysis" type="primary">{{ $fd('YesOrNo', scope.row.IsReReadingOrBackInfluenceAnalysis) }}</el-tag> <!-- <el-tag v-if="scope.row.IsReReadingOrBackInfluenceAnalysis" type="primary">{{ $fd('YesOrNo', scope.row.IsReReadingOrBackInfluenceAnalysis) }}</el-tag>-->
</template> <!-- </template>-->
</el-table-column> <!-- </el-table-column>-->
</el-table> </el-table>
<!-- 分页组件 --> <!-- 分页组件 -->

View File

@ -192,8 +192,8 @@ export default {
this.form[k] = res.Result[k] 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.form.OncologyAssessIdsStr = this.form.OncologyAssessIds.map(v => this.$fd('OncologyAssessType', v, 'id')).toString()
this.loading = false this.loading = false
}).catch(() => { }).catch(() => {

View File

@ -317,15 +317,34 @@ export default {
} }
trialReadingInfoSign(params).then(res => { trialReadingInfoSign(params).then(res => {
if (res.IsSuccess) { if (res.IsSuccess) {
this.$message.success(this.$t('common:message:savedSuccessfully')) try {
this.$refs['signForm'].btnLoading = false this.$message.success(this.$t('common:message:savedSuccessfully'))
this.signVisible = false this.isConfirm = true
this.isConfirm = true try {
this.$refs['readingRules' + this.TrialReadingCriterionId][0].initPage() this.$refs['readingRules' + this.TrialReadingCriterionId][0].initPage()
this.$refs['readingCriterions' + this.TrialReadingCriterionId][0].initPage() } catch (e) {
this.$refs['arbitrationRules' + this.TrialReadingCriterionId][0].getList() }
this.$refs['globalReading' + this.TrialReadingCriterionId][0].initForm() try {
this.$refs['oncologyForm' + this.TrialReadingCriterionId][0].initForm() 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 this.loading = false
}).catch(_ => { }).catch(_ => {