靶段备注清空问题
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') {
|
||||
this.limitBlur(item.Id, item.ValueType)
|
||||
}
|
||||
if (question.Childrens.length > 0) {
|
||||
this.resetChild(question.Childrens)
|
||||
if (item.Childrens && item.Childrens.length > 0) {
|
||||
this.resetChild(item.Childrens)
|
||||
}
|
||||
},
|
||||
resetChild(obj) {
|
||||
|
|
|
@ -436,10 +436,10 @@ export default {
|
|||
},
|
||||
formItemChange(val, question) {
|
||||
this.formChanged = true
|
||||
if (item.Type === 'number') {
|
||||
this.limitBlur(item.Id, item.ValueType)
|
||||
if (question.Type === 'number') {
|
||||
this.limitBlur(question.Id, question.ValueType)
|
||||
}
|
||||
if (question.Childrens.length > 0) {
|
||||
if (question.Childrens && question.Childrens.length > 0) {
|
||||
this.resetChild(question.Childrens)
|
||||
}
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue