EasyUI实现页面右下角弹出提示框

/**
 * 关闭提示窗
 */
function guanbi(){
    $('#ceshi').window('close');
}

/**
 * 页面加载时右下角弹出提示审批框操作
 */
function sliderelay(index){
    $.messager.show({
        id:'ceshi',
        title:'审批消息',
        msg:'您有'+''+index+''+'张表单需要审批!
点击确认立即审批 确认'
, timeout:21000, showType:'slide' }); }

你可能感兴趣的:(EasyUI)