临床数据上传时,匹配符未替换
continuous-integration/drone/push Build is passing Details

uat_us
wangxiaoshuang 2024-12-30 09:35:10 +08:00
parent 13ba919484
commit 4defa157ee
1 changed files with 14 additions and 7 deletions

View File

@ -742,7 +742,10 @@
</el-button> </el-button>
</el-form-item> </el-form-item>
</el-form> </el-form>
<div class="tip" v-if="[0].includes($store.state.trials.config.CollectImagesEnum)"> <div
class="tip"
v-if="[0].includes($store.state.trials.config.CollectImagesEnum)"
>
<i class="el-icon-warning-outline"></i> <i class="el-icon-warning-outline"></i>
<div v-html="$t('trials:uploadedDicoms:tip:message')"></div> <div v-html="$t('trials:uploadedDicoms:tip:message')"></div>
</div> </div>
@ -1754,12 +1757,10 @@ export default {
this.selected.TrialId = this.subjectRowData.TrialId this.selected.TrialId = this.subjectRowData.TrialId
this.selected.SubjectId = this.subjectRowData.SubjectId this.selected.SubjectId = this.subjectRowData.SubjectId
this.isShow = true this.isShow = true
console.log(res)
}) })
} }
}, },
handleView2(row) { handleView2(row) {
console.log(row)
this.rowData = { ...row } this.rowData = { ...row }
this.openType = 'look' this.openType = 'look'
this.preview.visible = true this.preview.visible = true
@ -1914,7 +1915,6 @@ export default {
this.list = res.Result.CurrentPageData this.list = res.Result.CurrentPageData
this.total = res.Result.TotalCount this.total = res.Result.TotalCount
this.otherInfo = res.OtherInfo this.otherInfo = res.OtherInfo
console.log(this.otherInfo)
}) })
.catch(() => { .catch(() => {
this.loading = false this.loading = false
@ -2053,9 +2053,16 @@ export default {
this.otherInfo.ClinicalInformationTransmissionEnum > 0 && this.otherInfo.ClinicalInformationTransmissionEnum > 0 &&
this.rowData.IsBaseLine this.rowData.IsBaseLine
) { ) {
const { ClinicalDataConfirmation } = const_.processSignature getVisitClinicalDataName({ id: this.rowData.Id })
this.signCode = ClinicalDataConfirmation .then((res) => {
this.signVisible = true this.signReplaceText = res.Result.ClinicalDataName
const { ClinicalDataConfirmation } = const_.processSignature
this.signCode = ClinicalDataConfirmation
this.signVisible = true
})
.catch((err) => {
console.log(err)
})
} else { } else {
this.submit() this.submit()
} }