diff --git a/src/components/uploadDicomAndNonedicom/dicomFile.vue b/src/components/uploadDicomAndNonedicom/dicomFile.vue index 9104e453..7bc26431 100644 --- a/src/components/uploadDicomAndNonedicom/dicomFile.vue +++ b/src/components/uploadDicomAndNonedicom/dicomFile.vue @@ -112,7 +112,7 @@
{{ scope.row.dicomInfo.modality.join('、') - }}, + }}, N/A,
@@ -1130,6 +1130,7 @@ export default { return new Promise(function (resolve, reject) { try { let subjectVisitId = null + let dicomInfo = {} if (scope.VisitTaskId) { scope.StudyInstanceUidList.forEach((item) => { if (item.VisitTaskId === scope.VisitTaskId) { @@ -1159,7 +1160,7 @@ export default { .then(async (res) => { scope.uploadQueues[index].dicomInfo.failedFileCount = 0 scope.$set(scope.uploadQueues[index].dicomInfo, 'isInit', true) - let dicomInfo = scope.uploadQueues[index].dicomInfo + dicomInfo = scope.uploadQueues[index].dicomInfo let seriesNum = scope.uploadQueues[index].seriesList.length let fileNum = scope.uploadQueues[index].fileList.length let seriesList = scope.uploadQueues[index].seriesList @@ -1206,7 +1207,7 @@ export default { patientId: dicomInfo.patientId, patientName: '', patientAge: dicomInfo.patientAge, - patientSex: config.DicomStoreInfo.SubjectSex || dicomInfo.patientSex, + patientSex: config?.DicomStoreInfo.SubjectSex || dicomInfo.patientSex, accessionNumber: dicomInfo.accNumber, patientBirthDate: '', acquisitionTime: dicomInfo.acquisitionTime, diff --git a/src/views/trials/trials-panel/attachments/site-research/components/ImageManual.vue b/src/views/trials/trials-panel/attachments/site-research/components/ImageManual.vue index 76d39978..f047032a 100644 --- a/src/views/trials/trials-panel/attachments/site-research/components/ImageManual.vue +++ b/src/views/trials/trials-panel/attachments/site-research/components/ImageManual.vue @@ -56,7 +56,7 @@ {{ item.label - }} + }} @@ -199,6 +199,14 @@ export default { EfficacyEvaluatorType: false, IsFollowStudyParameters: false, NotFollowReson: false, + IsRoutineMRIPDEE: false, + MRIPDFFScanTime: false, + MRIPDFFLeadTime: false, + MRIPDFFOther: false, + IsAuthorizeRadiologistsParticipate: false, + AssignFixedTechnologists: false, + ISStrictManualBurnFlag: false, + NotStrictManualBurnFlagReason: false, }, loading: false } diff --git a/src/views/trials/trials-panel/visit/crc-upload/index.vue b/src/views/trials/trials-panel/visit/crc-upload/index.vue index 81a801ae..17f1ac4d 100644 --- a/src/views/trials/trials-panel/visit/crc-upload/index.vue +++ b/src/views/trials/trials-panel/visit/crc-upload/index.vue @@ -39,8 +39,9 @@ - - + + @@ -875,6 +876,7 @@ const searchDataDefault = () => { SubmitState: null, ChallengeState: null, IsSubjectQuit: "", + SubjectStatus: null // SortField: '', // Asc: false } @@ -1022,7 +1024,7 @@ export default { methods: { // 申请影像退回 async imageBack(row) { - try { + try { let title = `${this.$t('trials:crcUpload:confirmMessage:imageBackTitle').replace('xxx', row.SubjectCode).replace('yyy', row.VisitName)}` this.$prompt(`

${title}

*${this.$t("trials:crcUpload:confirmMessage:ApplyReason")}`, this.$t("trials:crcUpload:confirmMessage:imageBack"), { confirmButtonText: this.$t("common:button:save"),