国际化问题修改

uat_us
wangxiaoshuang 2024-03-25 13:20:50 +08:00
parent 3fbc2710a3
commit 5df5836571
2 changed files with 6 additions and 8 deletions

View File

@ -22,7 +22,7 @@
@change="isHaveQuestionChange" @change="isHaveQuestionChange"
> >
<el-radio <el-radio
v-for="item of $d.YesOrNo" v-for="item of $d.IsPass"
:key="'IsHaveQuestion' + item.value" :key="'IsHaveQuestion' + item.value"
:label="item.value" :label="item.value"
> >

View File

@ -675,11 +675,6 @@ export default {
this.trialModalitys = this.trialModalitys =
this.relationInfo.Modalitys ? this.relationInfo.Modalitys.split('|') : [] this.relationInfo.Modalitys ? this.relationInfo.Modalitys.split('|') : []
this.studyLoading = false; this.studyLoading = false;
let flag = res.Result.some(item=>item.Modalities==='PET-CT'||item.ModalityForEdit==='PET-CT'||item.ModalityForEdit==='CT、PT'||item.Modalities==='CT、PT')
console.log(submitFlag,'submitFlag')
if(flag&&submitFlag){
this.getClinicalData();
}
}).catch(() => { this.studyLoading = false }) }).catch(() => { this.studyLoading = false })
}, },
// //
@ -1353,7 +1348,6 @@ export default {
if (logRes && logRes.url) { if (logRes && logRes.url) {
params.study.instanceCount = dicomInfo.failedFileCount params.study.instanceCount = dicomInfo.failedFileCount
params.RecordPath = scope.$getObjectName(logRes.url) params.RecordPath = scope.$getObjectName(logRes.url)
console.log(JSON.stringify(params))
addOrUpdateArchiveStudy(params).then(res => { addOrUpdateArchiveStudy(params).then(res => {
if (dicomInfo.failedFileCount === dicomInfo.fileCount) { if (dicomInfo.failedFileCount === dicomInfo.fileCount) {
scope.$message.success(scope.$t('trials:uploadDicomList:label:uploaded')) scope.$message.success(scope.$t('trials:uploadDicomList:label:uploaded'))
@ -1361,7 +1355,11 @@ export default {
scope.studyErrorList.push(dicomInfo.accNumber) scope.studyErrorList.push(dicomInfo.accNumber)
} }
scope.uploadQueues[index].uploadState.record = Record scope.uploadQueues[index].uploadState.record = Record
scope.getStudyInfo(true) let flag = res.Result=== 'PET-CT' || res.Result==='CT、PT' || res.Result === 'PT、CT';
if(flag){
scope.getClinicalData();
}
scope.getStudyInfo()
if (scope.$route.path !== '/trials/trials-panel/visit/crc-question') { if (scope.$route.path !== '/trials/trials-panel/visit/crc-question') {
scope.$emit('getList') scope.$emit('getList')
} }