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

View File

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