效果:
ecodeSDK.rewriteApiDataQueueSet({fn: (url, params, data) => {const { hash } = window.location;if (!hash.startsWith('#/main/workflow/req')) return false; // 判断页面地址if (!ecCom.WeaTools.Base64) return false; // 完整组件库加载完成if (!WfForm) return false; // 表单sdk加载完成if (!url.startsWith('/api/workflow/reqform/getRequestLogList')) return ;if (!data) return;console.log("流转意见全部:",data) ;console.log("流转意见:系统管理员",data.loglist) ;data.loglist = data.loglist.filter(item => item.displayname != '系统管理员');return data;},desc: '拦截系统管理员操作记录,流转记录不显示'
});