ecology8禁用流程保存功能,兼顾移动端

/**禁用保存 */
function forbiddenSave(){
    var mySave = function () {
        alert("抱歉,此流程不允许保存。");
        return false;
    }
    if (typeof doSave_nNew != "undefined") {//PC端
        doSave_nNew = mySave;
        //隐藏保存按钮
        $("input[type=‘button‘][value=‘保存‘]", parent.document).hide();
        $("#rightclickcornerMenu", parent.document).hide();
    }
    if (typeof doSave_4Mobile != "undefined") {//移动端
        doSave_4Mobile=mySave;
    }
}

ecology8禁用流程保存功能,兼顾移动端

上一篇:uni-app scroll-view 点击实现元素居中?


下一篇:iphone比安卓的手机流畅的四个主要原因