靶段备注清空问题
continuous-integration/drone/push Build encountered an error
Details
continuous-integration/drone/push Build encountered an error
Details
parent
2c0823f027
commit
5717fb9dd1
|
@ -443,8 +443,8 @@ export default {
|
||||||
if (item.Type === 'number') {
|
if (item.Type === 'number') {
|
||||||
this.limitBlur(item.Id, item.ValueType)
|
this.limitBlur(item.Id, item.ValueType)
|
||||||
}
|
}
|
||||||
if (question.Childrens.length > 0) {
|
if (item.Childrens && item.Childrens.length > 0) {
|
||||||
this.resetChild(question.Childrens)
|
this.resetChild(item.Childrens)
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
resetChild(obj) {
|
resetChild(obj) {
|
||||||
|
|
|
@ -436,10 +436,10 @@ export default {
|
||||||
},
|
},
|
||||||
formItemChange(val, question) {
|
formItemChange(val, question) {
|
||||||
this.formChanged = true
|
this.formChanged = true
|
||||||
if (item.Type === 'number') {
|
if (question.Type === 'number') {
|
||||||
this.limitBlur(item.Id, item.ValueType)
|
this.limitBlur(question.Id, question.ValueType)
|
||||||
}
|
}
|
||||||
if (question.Childrens.length > 0) {
|
if (question.Childrens && question.Childrens.length > 0) {
|
||||||
this.resetChild(question.Childrens)
|
this.resetChild(question.Childrens)
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue