diff --git a/src/views/trials/trials-inspection/components/pullImage/byTrials.vue b/src/views/trials/trials-inspection/components/pullImage/byTrials.vue index 721254a..c1caa85 100644 --- a/src/views/trials/trials-inspection/components/pullImage/byTrials.vue +++ b/src/views/trials/trials-inspection/components/pullImage/byTrials.vue @@ -23,7 +23,7 @@ - + @@ -435,7 +435,7 @@ export default { } }, created() { - this.getAEList() + this.getTrialList() }, methods: { // 获取项目 @@ -444,9 +444,9 @@ export default { let res = await getUserJoinedTrialPatientList() if (res.IsSuccess) { this.trialList = res.Result - if (!this.trialList || (this.trialList && this.trialList.length <= 1)) return false + if (!this.trialList || this.trialList.length <= 0) return false this.searchData.TrialId = this.trialList[0].TrialId - this.getTrialList() + this.getAEList() } } catch (err) { console.log(err)