Merge branch 'main' of https://gitea.frp.extimaging.com/XCKJ/irc_web
continuous-integration/drone/push Build is passing Details

uat_us
DESKTOP-6C3NK6N\WXS 2024-08-20 16:20:34 +08:00
commit dbdbed3556
1 changed files with 6 additions and 4 deletions

View File

@ -237,10 +237,12 @@ export default {
async loadStudy() {
const data = await getStudyInfo(this.studyId)
if (data.IsSuccess) {
this.studyCode = data.Result.StudyCode
this.modality = data.Result.Modalities
this.seriesCount = data.Result.SeriesCount
this.description = data.Result.Description
if (data.Result) {
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)
}