页面编辑时复制对象,修改表单时,不影响列表数据
/*** 空校验 null或""都返回true*/public static isEmpty (obj: any) {if ((typeof obj === 'string')) {return !obj || obj.replace(/\s+/g, "") === ""} else {return (!obj || JSON.stringify(obj) === "{}" || obj.length === 0);}}/*** 非空校验*/public static isNotEmpty (obj: any) {return !this.isEmpty(obj);}/*** 对象复制* @param obj*/public static copy (obj: object) {if (Tool.isNotEmpty(obj)) {return JSON.parse(JSON.stringify(obj));}}
使用
//编辑const edit = (record: any) => {modalVisible.value = true;//页面数据复制 回显表单数据 不影响页面元素ebook.value = Tool.copy(record);};