pass按项目查询条件变更
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
1ffb033013
commit
4f38b77a53
|
@ -23,7 +23,7 @@
|
|||
</el-form-item>
|
||||
<!-- patientID -->
|
||||
<el-form-item class="my_multiple" :label="$t('trials:inspection:pullImage:search:patientID')">
|
||||
<el-select v-model="searchData.PatientID" style="width: 140px">
|
||||
<el-select v-model="searchData.PatientID" style="width: 140px" clearable>
|
||||
<el-option v-for="(item, index) of patientList" :key="index.PatientIdStr"
|
||||
:label="item.PatientName" :value="item.PatientIdStr">
|
||||
</el-option>
|
||||
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue