This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
/*
1. beforeSave、beforeSend、 beforeReturn、 beforeDelete
2 .MyFlowGener、MyFlowTree的固定方法,禁止删除
3.主要写保存前、发送前、退回前、删除前事件
4.返回值为 true、false
*/
//保存前事件
function beforeSave() {
return true;
}
//发生前事件
function beforeSend() {
//退回前事件
function beforeReturn() {
//删除前事件
function beforeDelete() {
export{
beforeSave,
beforeSend,
beforeReturn,
beforeDelete