Compare commits
No commits in common. "dcde93b4f8096dbfa8cfcc873bdd86286db997e6" and "7874f69bfe5f0088144da5994c512a8be256c95b" have entirely different histories.
dcde93b4f8
...
7874f69bfe
|
|
@ -142,7 +142,6 @@
|
||||||
:modelList="modelList"
|
:modelList="modelList"
|
||||||
:bodyPart="bodyPart"
|
:bodyPart="bodyPart"
|
||||||
:IsDicom="IsDicom"
|
:IsDicom="IsDicom"
|
||||||
:visitTaskId="modelTaskId"
|
|
||||||
/>
|
/>
|
||||||
</el-dialog>
|
</el-dialog>
|
||||||
</template>
|
</template>
|
||||||
|
|
@ -218,7 +217,6 @@ export default {
|
||||||
downloadId: null,
|
downloadId: null,
|
||||||
IsReadingTaskViewInOrder: 0, // 阅片规则
|
IsReadingTaskViewInOrder: 0, // 阅片规则
|
||||||
bodyPart: [],
|
bodyPart: [],
|
||||||
modelTaskId: null,
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
async mounted() {
|
async mounted() {
|
||||||
|
|
@ -444,7 +442,6 @@ export default {
|
||||||
data.SourceSubjectVisitId = item.SourceSubjectVisitId
|
data.SourceSubjectVisitId = item.SourceSubjectVisitId
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
this.modelTaskId = item.VisitTaskId
|
|
||||||
this.IsDicom = item.IsDicom
|
this.IsDicom = item.IsDicom
|
||||||
this.model_cfg.visible = true
|
this.model_cfg.visible = true
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -136,9 +136,6 @@ export default {
|
||||||
return []
|
return []
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
visitTaskId: {
|
|
||||||
type: String,
|
|
||||||
},
|
|
||||||
IsDicom: {
|
IsDicom: {
|
||||||
required: true,
|
required: true,
|
||||||
type: Boolean,
|
type: Boolean,
|
||||||
|
|
@ -155,7 +152,7 @@ export default {
|
||||||
if (this.IsDicom) {
|
if (this.IsDicom) {
|
||||||
var token = getToken()
|
var token = getToken()
|
||||||
routeData = this.$router.resolve({
|
routeData = this.$router.resolve({
|
||||||
path: `/showdicom?studyId=${row.Id}&TokenKey=${token}&type=Study&visitTaskId=${this.visitTaskId}`,
|
path: `/showdicom?studyId=${row.Id}&TokenKey=${token}&type=Study`,
|
||||||
})
|
})
|
||||||
} else {
|
} else {
|
||||||
let trialId = this.$route.query.trialId
|
let trialId = this.$route.query.trialId
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue