Merge branch 'main' of https://gitea.frp.extimaging.com/XCKJ/irc_web
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
commit
dbdbed3556
|
@ -237,10 +237,12 @@ export default {
|
||||||
async loadStudy() {
|
async loadStudy() {
|
||||||
const data = await getStudyInfo(this.studyId)
|
const data = await getStudyInfo(this.studyId)
|
||||||
if (data.IsSuccess) {
|
if (data.IsSuccess) {
|
||||||
this.studyCode = data.Result.StudyCode
|
if (data.Result) {
|
||||||
this.modality = data.Result.Modalities
|
this.studyCode = data.Result.StudyCode
|
||||||
this.seriesCount = data.Result.SeriesCount
|
this.modality = data.Result.Modalities
|
||||||
this.description = data.Result.Description
|
this.seriesCount = data.Result.SeriesCount
|
||||||
|
this.description = data.Result.Description
|
||||||
|
}
|
||||||
const url = `/series/list/${this.studyId}`
|
const url = `/series/list/${this.studyId}`
|
||||||
this.getSeriesList(url)
|
this.getSeriesList(url)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue