uat_us
parent
0928fef04c
commit
8afaf8a39e
|
@ -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>
|
||||
|
||||
<!-- 分页组件 -->
|
||||
|
|
|
@ -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