1
continuous-integration/drone/push Build is passing Details

main
wangxiaoshuang 2025-05-30 16:59:26 +08:00
parent d73a525b2a
commit d97ed7a999
2 changed files with 15 additions and 8 deletions

View File

@ -86,8 +86,10 @@
</el-form-item>
<!-- studyDate -->
<el-form-item :label="$t('trials:inspection:pullImage:search:studyDate')">
<el-date-picker v-model="StudyDate" type="daterange" range-separator="-" :start-placeholder="$t('trials:uploadClinicalData:table:beginDate')"
:end-placeholder="$t('trials:uploadClinicalData:table:endDate')" value-format="yyyyMMdd" :picker-options="pickerOptions">
<el-date-picker v-model="StudyDate" type="daterange" range-separator="-"
:start-placeholder="$t('trials:uploadClinicalData:table:beginDate')"
:end-placeholder="$t('trials:uploadClinicalData:table:endDate')" value-format="yyyyMMdd"
:picker-options="pickerOptions">
</el-date-picker>
</el-form-item>
<!-- studyTime -->
@ -411,7 +413,7 @@ export default {
},
},
created() {
// this.getAEList()
this.getAEList(false, true)
},
methods: {
pacsDicomAEIdChange(val, f = false) {
@ -496,7 +498,7 @@ export default {
}
},
//
async getAEList(f = false) {
async getAEList(f = false, isFirst = false) {
let data = {
CalledAE: null,
IP: null,
@ -525,7 +527,9 @@ export default {
} else {
this.pacsDicomAEIdChange(this.searchData.PacsDicomAEId, true)
}
this.getList()
if (!isFirst) {
this.getList()
}
}
}
} catch (err) {

View File

@ -446,7 +446,7 @@ export default {
this.trialList = res.Result
if (!this.trialList || this.trialList.length <= 0) return false
this.searchData.TrialId = this.trialList[0].TrialId
// this.getAEList()
this.getAEList(false, true)
}
} catch (err) {
console.log(err)
@ -535,7 +535,7 @@ export default {
}
},
//
async getAEList(f = false) {
async getAEList(f = false, isFirst = false) {
let data = {
CalledAE: null,
IP: null,
@ -564,7 +564,10 @@ export default {
} else {
this.pacsDicomAEIdChange(this.searchData.PacsDicomAEId, true)
}
this.getList()
if (!isFirst) {
this.getList()
}
}
}
} catch (err) {