Compare commits
No commits in common. "2d93a1a5acba479873556bae559a7ca61c19226e" and "0494d567db14a3aa20efb94093daa05297a698e9" have entirely different histories.
2d93a1a5ac
...
0494d567db
|
|
@ -237,12 +237,10 @@ export default {
|
||||||
async loadStudy() {
|
async loadStudy() {
|
||||||
const data = await getStudyInfo(this.studyId)
|
const data = await getStudyInfo(this.studyId)
|
||||||
if (data.IsSuccess) {
|
if (data.IsSuccess) {
|
||||||
if (data.Result) {
|
this.studyCode = data.Result.StudyCode
|
||||||
this.studyCode = data.Result.StudyCode
|
this.modality = data.Result.Modalities
|
||||||
this.modality = data.Result.Modalities
|
this.seriesCount = data.Result.SeriesCount
|
||||||
this.seriesCount = data.Result.SeriesCount
|
this.description = data.Result.Description
|
||||||
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