showEditDialog(row) {
const dictId = row.dictId;
this.title = "修改字典类型";
TypeApi.InfoType(dictId).then((response) => {
this.editForm.dictId = response.dictId;
this.editForm.dictName = response.dictName;
this.editForm.dictType = response.dictType;
this.editForm.remark = response.remark;
this.editForm.status = response.status;
this.opeditDialogVisibleen = true;
});
},
老师的方法和网上的为什么不同,有什么区别