配置确认页面展示术语配置
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
4b406f96fc
commit
e388ea2543
|
@ -1307,6 +1307,16 @@ export default {
|
||||||
// OldVal: this.initialForm.ClinicalDataSetNames.join(', ')
|
// OldVal: this.initialForm.ClinicalDataSetNames.join(', ')
|
||||||
// }
|
// }
|
||||||
]
|
]
|
||||||
|
this.form.TrialObjectNameList.forEach((item) => {
|
||||||
|
let obj = {
|
||||||
|
Name: item.Name,
|
||||||
|
NewVal: item.TrialName,
|
||||||
|
OldVal: this.initialForm.TrialObjectNameList.find(
|
||||||
|
(d) => d.Name === item.Name
|
||||||
|
).TrialName,
|
||||||
|
}
|
||||||
|
this.confirmData.push(obj)
|
||||||
|
})
|
||||||
},
|
},
|
||||||
// 筛选号规则提醒
|
// 筛选号规则提醒
|
||||||
subjectCodeRuleChange(val) {
|
subjectCodeRuleChange(val) {
|
||||||
|
@ -1323,6 +1333,30 @@ export default {
|
||||||
this.form[k] = res[k]
|
this.form[k] = res[k]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
let Modalitys = this.form.ModalityList.map((item) => {
|
||||||
|
return this.$fd('Modality', item.trim())
|
||||||
|
})
|
||||||
|
this.form.ModalityListStr = Modalitys.toString().replaceAll(',', ' | ')
|
||||||
|
// this.form.ModalityListStr = this.form.ModalityList.toString().replaceAll(
|
||||||
|
// ",",
|
||||||
|
// " | "
|
||||||
|
// );
|
||||||
|
let BodyPartTypes = res.BodyPartTypes
|
||||||
|
this.form.BodyPartTypes = ''
|
||||||
|
this.form.BodyPartTypeList = BodyPartTypes.split('|')
|
||||||
|
let r = await this.getTrialBodyPartList()
|
||||||
|
if (r) {
|
||||||
|
var bodyPartTypes = this.form.BodyPartTypeList.map((i) => {
|
||||||
|
return this.changeBodyPart(i.trim())
|
||||||
|
})
|
||||||
|
this.form.BodyPartTypes = bodyPartTypes
|
||||||
|
.toString()
|
||||||
|
.replaceAll(',', ' | ')
|
||||||
|
// this.form.ClinicalDataSetNamesStr = this.form.ClinicalDataSetNames.join(', ')
|
||||||
|
this.initialForm = { ...this.form }
|
||||||
|
this.initialForm.TrialObjectNameList = JSON.parse(
|
||||||
|
JSON.stringify(this.form.TrialObjectNameList)
|
||||||
|
)
|
||||||
if (
|
if (
|
||||||
!this.form.TrialObjectNameList ||
|
!this.form.TrialObjectNameList ||
|
||||||
(Array.isArray(this.form.TrialObjectNameList) &&
|
(Array.isArray(this.form.TrialObjectNameList) &&
|
||||||
|
@ -1351,28 +1385,6 @@ export default {
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
let Modalitys = this.form.ModalityList.map((item) => {
|
|
||||||
return this.$fd('Modality', item.trim())
|
|
||||||
})
|
|
||||||
this.form.ModalityListStr = Modalitys.toString().replaceAll(',', ' | ')
|
|
||||||
// this.form.ModalityListStr = this.form.ModalityList.toString().replaceAll(
|
|
||||||
// ",",
|
|
||||||
// " | "
|
|
||||||
// );
|
|
||||||
let BodyPartTypes = res.BodyPartTypes
|
|
||||||
this.form.BodyPartTypes = ''
|
|
||||||
this.form.BodyPartTypeList = BodyPartTypes.split('|')
|
|
||||||
let r = await this.getTrialBodyPartList()
|
|
||||||
if (r) {
|
|
||||||
var bodyPartTypes = this.form.BodyPartTypeList.map((i) => {
|
|
||||||
return this.changeBodyPart(i.trim())
|
|
||||||
})
|
|
||||||
this.form.BodyPartTypes = bodyPartTypes
|
|
||||||
.toString()
|
|
||||||
.replaceAll(',', ' | ')
|
|
||||||
// this.form.ClinicalDataSetNamesStr = this.form.ClinicalDataSetNames.join(', ')
|
|
||||||
this.initialForm = { ...this.form }
|
|
||||||
this.loading = false
|
this.loading = false
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue