把 el -form 标签里:rule去掉试试.如果只是想某一项去掉在rule数组里找到对应得删除即可(prop是用来区分得找到与prop相同得)
/**
* @description 清空form表单
*/
resetFormData () {
// 重置表单内容
Object.assign(this.$data.applyInfo, this.$options.data().applyInfo)
// 重置校验
this.$nextTick(() => {
this.$refs['taskForm'].clearValidate()
})
},