Compare commits

..

No commits in common. "2d93a1a5acba479873556bae559a7ca61c19226e" and "0494d567db14a3aa20efb94093daa05297a698e9" have entirely different histories.

1 changed files with 4 additions and 6 deletions

View File

@ -237,12 +237,10 @@ export default {
async loadStudy() {
const data = await getStudyInfo(this.studyId)
if (data.IsSuccess) {
if (data.Result) {
this.studyCode = data.Result.StudyCode
this.modality = data.Result.Modalities
this.seriesCount = data.Result.SeriesCount
this.description = data.Result.Description
}
this.studyCode = data.Result.StudyCode
this.modality = data.Result.Modalities
this.seriesCount = data.Result.SeriesCount
this.description = data.Result.Description
const url = `/series/list/${this.studyId}`
this.getSeriesList(url)
}