当前位置: 首页 > news >正文

NET餐厅管理系统前端js-dwz.dialog改变原始层的大小

/**
         * 改变原始层的大小
         * @param {Object} obj
         * @param {Object} dialog
         * @param {Object} target
         */
        resizeDialog:function(obj, dialog, target) {
            var oleft = parseInt(obj.style.left);
            var otop = parseInt(obj.style.top);
            var height = parseInt(obj.style.height);
            var width = parseInt(obj.style.width);
            if(target == "n" || target == "nw") {
                tmove = parseInt($(dialog).css("top")) - otop;
            } else {
                tmove = height - parseInt($(dialog).css("height"));
            }
            $(dialog).css({left:oleft,width:width,top:otop,height:height});
            $(".dialogContent", dialog).css("width", (width-12) + "px");
            $(".pageContent", dialog).css("width", (width-14) + "px");
            if (target != "w" && target != "e") {
                var content = $(".dialogContent", dialog);
                content.css({height:height - $(".dialogHeader", dialog).outerHeight() - $(".dialogFooter", dialog).outerHeight() - 6});
                content.find("[layoutH]").layoutH(content);
                $.pdialog.resizeTool(target, tmove, dialog);
            }
            $.pdialog.repaint(target, {oleft:oleft,otop: otop,tmove: tmove,owidth:width});
            
            $(window).trigger("resizeGrid");
        },
        close:function(dialog) {
            if(typeof dialog == 'string') dialog = $("body").data(dialog);
            var close = dialog.data("close");
            var go = true;
            if(close && $.isFunction(close)) {
                var param = dialog.data("param");
                if(param && param != ""){
                    param = DWZ.jsonEval(param);
                    go = close(param);
                } else {
                    go = close();
                }
                if(!go) return;
            }
            if ($.fn.xheditor) {
                $("textarea.editor", dialog).xheditor(false);
            }
            $(dialog).unbind("click").hide();
            $("div.dialogContent", dialog).html("");
            $("div.shadow").hide();
            if($(dialog).data("mask")){
                $("#dialogBackground").hide();
            } else{
                if ($(dialog).data("id")) $.taskBar.closeDialog($(dialog).data("id"));
            }
            $("body").removeData($(dialog).data("id"));
            $(dialog).remove();
        },

相关文章:

  • 做图片赚钱的网站/品牌推广方案思维导图
  • 网站建设英文/适合企业员工培训的课程
  • 自己做短视频网站/河南网站建设
  • 网站销售方案/seo sem论坛
  • 怎么做木马网站/seo搜索引擎工具
  • 张家港做政府网站的公司/怎么自己创建一个网站
  • 【Linux】Ubuntu20.04.5安装ROS1【教程】
  • 使用隐马尔科夫模型实现分词
  • springboot,vue影院订票系统
  • 大数据之Kafka Shell命令和Java API
  • 〖百宝书-思维锻炼①〗——思维进阶和升华
  • SpringSecurity随笔(2)-OAuth2协议
  • 基于Java+SpringBoot+Vue在线培训考试系统设计与实现
  • 【云原生】k8s 一键部署(ansible)
  • mysql:浅显易懂——存储引擎
  • 【鸟哥杂谈】腾讯云 CentOS8 Linux环境下通过docker安装mysql
  • 微服务间通讯负载均衡以及日志
  • 手写拖动上传组件(Vue3/React)