与基线摄取值变化数值维护
parent
5ec96c76bf
commit
300a9ad536
|
@ -575,6 +575,7 @@ export default {
|
|||
setUptakeFormBaseline() {
|
||||
// 自动计算与基线相比摄取值变化
|
||||
if (!this.isBaseLineTask) {
|
||||
console.log('setUptakeFormBaseline: ',this.questionForm[this.pet5PSId],this.baseLinePET5PS)
|
||||
if (this.questionForm[this.pet5PSId] > 0) {
|
||||
// 当前访视的PET 5ps评分大于基线的PET 5ps评分 增大
|
||||
// 当前访视的PET 5ps评分小于基线的PET 5ps评分 减小
|
||||
|
@ -659,6 +660,10 @@ export default {
|
|||
// PET 5PS评分;
|
||||
this.$set(this.questionForm, i.Id, i.Answer ? i.Answer : null)
|
||||
}
|
||||
if (i.QuestionType === 56) {
|
||||
// 与基线相比摄取值变化;
|
||||
this.$set(this.questionForm, i.Id, i.Answer ? i.Answer : null)
|
||||
}
|
||||
|
||||
if (i.Childrens && i.Childrens.length > 0) {
|
||||
this.setSuvChild(i.Childrens)
|
||||
|
|
Loading…
Reference in New Issue