fix 79858
This commit is contained in:
@@ -658,8 +658,8 @@ export default {
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
clearValidate () {
|
clearValidate (fieldNameList) {
|
||||||
this.$refs.ruleForm.clearValidate()
|
this.$refs.ruleForm.clearValidate(fieldNameList)
|
||||||
},
|
},
|
||||||
/**
|
/**
|
||||||
* 国内海外的特殊处理
|
* 国内海外的特殊处理
|
||||||
@@ -688,7 +688,7 @@ export default {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
this.rules = Object.assign({}, rules)
|
this.rules = Object.assign({}, rules)
|
||||||
this.clearValidate()
|
this.clearValidate(fieldNameList)
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
getFlag (fieldName) {
|
getFlag (fieldName) {
|
||||||
@@ -733,7 +733,7 @@ export default {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
this.rules = Object.assign({}, rules)
|
this.rules = Object.assign({}, rules)
|
||||||
this.clearValidate()
|
this.clearValidate(fields)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1085,7 +1085,7 @@ export default {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
this.rules = Object.assign({}, rules)
|
this.rules = Object.assign({}, rules)
|
||||||
this.$refs.ruleForm.clearValidate()
|
this.$refs.ruleForm.clearValidate(fieldNameList)
|
||||||
},
|
},
|
||||||
/**
|
/**
|
||||||
* 获取海外的表单数据
|
* 获取海外的表单数据
|
||||||
@@ -1166,7 +1166,7 @@ export default {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
this.rules = Object.assign({}, rules)
|
this.rules = Object.assign({}, rules)
|
||||||
this.$refs.ruleForm.clearValidate()
|
this.$refs.ruleForm.clearValidate(fields)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user