简历部分接口添加项目id
continuous-integration/drone/push Build is passing

This commit is contained in:
2024-10-29 14:16:30 +08:00
parent 9f9255d315
commit 2d938d077e
4 changed files with 19 additions and 4 deletions
@@ -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>