简历部分接口添加项目id
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
9f9255d315
commit
2d938d077e
|
@ -140,8 +140,11 @@ export function addOrUpdateResearchPublication(param) {
|
|||
|
||||
export function getTrialExperience(doctorId) {
|
||||
return request({
|
||||
url: `/trialExperience/getTrialExperience/${doctorId}`,
|
||||
method: 'get'
|
||||
url: `/trialExperience/getTrialExperience`,
|
||||
method: 'post',
|
||||
data: {
|
||||
DoctorId: doctorId
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
|
@ -238,8 +241,11 @@ export function downloadByAttachmentId(doctorId, attachmentIds) {
|
|||
|
||||
export function getDetail(doctorId) {
|
||||
return request({
|
||||
url: `/doctor/getDetail/${doctorId}`,
|
||||
method: 'get'
|
||||
url: `/doctor/getDetail`,
|
||||
method: 'post',
|
||||
data: {
|
||||
DoctorId: doctorId
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
|
|
|
@ -90,6 +90,9 @@ export default {
|
|||
if (!validate) return false
|
||||
this.form.Id = this.$route.query.Id || this.reviewerId
|
||||
this.loading = true
|
||||
if (this.$route.query.trialId) {
|
||||
this.form.TrialId = this.$route.query.trialId
|
||||
}
|
||||
let res = await updateGneralSituation(this.form)
|
||||
this.loading = false
|
||||
if (res.IsSuccess) {
|
||||
|
|
|
@ -522,6 +522,9 @@ export default {
|
|||
OtherClinicalExperience: this.OtherClinicalExperience,
|
||||
OtherClinicalExperienceCN: this.OtherClinicalExperienceCN,
|
||||
}
|
||||
if (this.$route.query.trialId) {
|
||||
param.TrialId = this.$route.query.trialId
|
||||
}
|
||||
updateOtherExperience(param).then((res) => {
|
||||
if (res.IsSuccess) {
|
||||
if (this.id) {
|
||||
|
|
|
@ -602,5 +602,8 @@ export default {
|
|||
align-items: center;
|
||||
justify-content: space-between;
|
||||
}
|
||||
::v-deep .el-card__body {
|
||||
padding: 20px !important;
|
||||
}
|
||||
</style>
|
||||
|
||||
|
|
Loading…
Reference in New Issue