vue & this.$refs.form.methods bugs



vue & this.$refs.form.methods bugs

vue & this.$refs.form.methods bugs_$refs

组件方法调用的 form不匹配

    async saveClick () {
// 调用 detailRef 组件的 copyPushClick 方法
let params = this.$refs.detailRef.copyPushClick('detailsForm');
console.log('tree click params ', JSON.stringify(params, null, 4));
// 复制 推送 校验
console.log('this.$refs.detailRef', this.$refs.detailRef);
console.log('this.selfMenuKey', this.selfMenuKey);
// ✅
if(this.selfMenuKey !== 'campaign') {
const isValidate = this.$refs.detailRef.copyPushFormChecker('detailsForm');
if(!isValidate) {
return;
}
}
// ❌
// const isValidate = this.$refs.detailRef.copyPushFormChecker('detailsForm');
// if(!isValidate) {
// return;
// }
}




​ ​