You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
387 lines
7.5 KiB
Plaintext
387 lines
7.5 KiB
Plaintext
/**
|
|
* jQuery EasyUI 1.4.5
|
|
*
|
|
* Copyright (c) 2009-2016 www.jeasyui.com. All rights reserved.
|
|
*
|
|
* Licensed under the freeware license: http://www.jeasyui.com/license_freeware.php
|
|
* To use it on other terms please contact us: info@jeasyui.com
|
|
*
|
|
*/
|
|
(function($){
|
|
$.easyui={indexOfArray:function(a,o,id){
|
|
for(var i=0,_1=a.length;i<_1;i++){
|
|
if(id==undefined){
|
|
if(a[i]==o){
|
|
return i;
|
|
}
|
|
}else{
|
|
if(a[i][o]==id){
|
|
return i;
|
|
}
|
|
}
|
|
}
|
|
return -1;
|
|
},removeArrayItem:function(a,o,id){
|
|
if(typeof o=="string"){
|
|
for(var i=0,_2=a.length;i<_2;i++){
|
|
if(a[i][o]==id){
|
|
a.splice(i,1);
|
|
return;
|
|
}
|
|
}
|
|
}else{
|
|
var _3=this.indexOfArray(a,o);
|
|
if(_3!=-1){
|
|
a.splice(_3,1);
|
|
}
|
|
}
|
|
},addArrayItem:function(a,o,r){
|
|
var _4=this.indexOfArray(a,o,r?r[o]:undefined);
|
|
if(_4==-1){
|
|
a.push(r?r:o);
|
|
}else{
|
|
a[_4]=r?r:o;
|
|
}
|
|
},getArrayItem:function(a,o,id){
|
|
var _5=this.indexOfArray(a,o,id);
|
|
return _5==-1?null:a[_5];
|
|
},forEach:function(_6,_7,_8){
|
|
var _9=[];
|
|
for(var i=0;i<_6.length;i++){
|
|
_9.push(_6[i]);
|
|
}
|
|
while(_9.length){
|
|
var _a=_9.shift();
|
|
if(_8(_a)==false){
|
|
return;
|
|
}
|
|
if(_7&&_a.children){
|
|
for(var i=_a.children.length-1;i>=0;i--){
|
|
_9.unshift(_a.children[i]);
|
|
}
|
|
}
|
|
}
|
|
}};
|
|
$.parser={auto:true,onComplete:function(_b){
|
|
},plugins:["draggable","droppable","resizable","pagination","tooltip","linkbutton","menu","menubutton","splitbutton","switchbutton","progressbar","tree","textbox","filebox","combo","combobox","combotree","combogrid","numberbox","validatebox","searchbox","spinner","numberspinner","timespinner","datetimespinner","calendar","datebox","datetimebox","slider","layout","panel","datagrid","propertygrid","treegrid","datalist","tabs","accordion","window","dialog","form"],parse:function(_c){
|
|
var aa=[];
|
|
for(var i=0;i<$.parser.plugins.length;i++){
|
|
var _d=$.parser.plugins[i];
|
|
var r=$(".easyui-"+_d,_c);
|
|
if(r.length){
|
|
if(r[_d]){
|
|
r.each(function(){
|
|
$(this)[_d]($.data(this,"options")||{});
|
|
});
|
|
}else{
|
|
aa.push({name:_d,jq:r});
|
|
}
|
|
}
|
|
}
|
|
if(aa.length&&window.easyloader){
|
|
var _e=[];
|
|
for(var i=0;i<aa.length;i++){
|
|
_e.push(aa[i].name);
|
|
}
|
|
easyloader.load(_e,function(){
|
|
for(var i=0;i<aa.length;i++){
|
|
var _f=aa[i].name;
|
|
var jq=aa[i].jq;
|
|
jq.each(function(){
|
|
$(this)[_f]($.data(this,"options")||{});
|
|
});
|
|
}
|
|
$.parser.onComplete.call($.parser,_c);
|
|
});
|
|
}else{
|
|
$.parser.onComplete.call($.parser,_c);
|
|
}
|
|
},parseValue:function(_10,_11,_12,_13){
|
|
_13=_13||0;
|
|
var v=$.trim(String(_11||""));
|
|
var _14=v.substr(v.length-1,1);
|
|
if(_14=="%"){
|
|
v=parseInt(v.substr(0,v.length-1));
|
|
if(_10.toLowerCase().indexOf("width")>=0){
|
|
v=Math.floor((_12.width()-_13)*v/100);
|
|
}else{
|
|
v=Math.floor((_12.height()-_13)*v/100);
|
|
}
|
|
}else{
|
|
v=parseInt(v)||undefined;
|
|
}
|
|
return v;
|
|
},parseOptions:function(_15,_16){
|
|
var t=$(_15);
|
|
var _17={};
|
|
var s=$.trim(t.attr("data-options"));
|
|
if(s){
|
|
if(s.substring(0,1)!="{"){
|
|
s="{"+s+"}";
|
|
}
|
|
_17=(new Function("return "+s))();
|
|
}
|
|
$.map(["width","height","left","top","minWidth","maxWidth","minHeight","maxHeight"],function(p){
|
|
var pv=$.trim(_15.style[p]||"");
|
|
if(pv){
|
|
if(pv.indexOf("%")==-1){
|
|
pv=parseInt(pv);
|
|
if(isNaN(pv)){
|
|
pv=undefined;
|
|
}
|
|
}
|
|
_17[p]=pv;
|
|
}
|
|
});
|
|
if(_16){
|
|
var _18={};
|
|
for(var i=0;i<_16.length;i++){
|
|
var pp=_16[i];
|
|
if(typeof pp=="string"){
|
|
_18[pp]=t.attr(pp);
|
|
}else{
|
|
for(var _19 in pp){
|
|
var _1a=pp[_19];
|
|
if(_1a=="boolean"){
|
|
_18[_19]=t.attr(_19)?(t.attr(_19)=="true"):undefined;
|
|
}else{
|
|
if(_1a=="number"){
|
|
_18[_19]=t.attr(_19)=="0"?0:parseFloat(t.attr(_19))||undefined;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
$.extend(_17,_18);
|
|
}
|
|
return _17;
|
|
}};
|
|
$(function(){
|
|
var d=$("<div style=\"position:absolute;top:-1000px;width:100px;height:100px;padding:5px\"></div>").appendTo("body");
|
|
$._boxModel=d.outerWidth()!=100;
|
|
d.remove();
|
|
d=$("<div style=\"position:fixed\"></div>").appendTo("body");
|
|
$._positionFixed=(d.css("position")=="fixed");
|
|
d.remove();
|
|
if(!window.easyloader&&$.parser.auto){
|
|
$.parser.parse();
|
|
}
|
|
});
|
|
$.fn._outerWidth=function(_1b){
|
|
if(_1b==undefined){
|
|
if(this[0]==window){
|
|
return this.width()||document.body.clientWidth;
|
|
}
|
|
return this.outerWidth()||0;
|
|
}
|
|
return this._size("width",_1b);
|
|
};
|
|
$.fn._outerHeight=function(_1c){
|
|
if(_1c==undefined){
|
|
if(this[0]==window){
|
|
return this.height()||document.body.clientHeight;
|
|
}
|
|
return this.outerHeight()||0;
|
|
}
|
|
return this._size("height",_1c);
|
|
};
|
|
$.fn._scrollLeft=function(_1d){
|
|
if(_1d==undefined){
|
|
return this.scrollLeft();
|
|
}else{
|
|
return this.each(function(){
|
|
$(this).scrollLeft(_1d);
|
|
});
|
|
}
|
|
};
|
|
$.fn._propAttr=$.fn.prop||$.fn.attr;
|
|
$.fn._size=function(_1e,_1f){
|
|
if(typeof _1e=="string"){
|
|
if(_1e=="clear"){
|
|
return this.each(function(){
|
|
$(this).css({width:"",minWidth:"",maxWidth:"",height:"",minHeight:"",maxHeight:""});
|
|
});
|
|
}else{
|
|
if(_1e=="fit"){
|
|
return this.each(function(){
|
|
_20(this,this.tagName=="BODY"?$("body"):$(this).parent(),true);
|
|
});
|
|
}else{
|
|
if(_1e=="unfit"){
|
|
return this.each(function(){
|
|
_20(this,$(this).parent(),false);
|
|
});
|
|
}else{
|
|
if(_1f==undefined){
|
|
return _21(this[0],_1e);
|
|
}else{
|
|
return this.each(function(){
|
|
_21(this,_1e,_1f);
|
|
});
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}else{
|
|
return this.each(function(){
|
|
_1f=_1f||$(this).parent();
|
|
$.extend(_1e,_20(this,_1f,_1e.fit)||{});
|
|
var r1=_22(this,"width",_1f,_1e);
|
|
var r2=_22(this,"height",_1f,_1e);
|
|
if(r1||r2){
|
|
$(this).addClass("easyui-fluid");
|
|
}else{
|
|
$(this).removeClass("easyui-fluid");
|
|
}
|
|
});
|
|
}
|
|
function _20(_23,_24,fit){
|
|
if(!_24.length){
|
|
return false;
|
|
}
|
|
var t=$(_23)[0];
|
|
var p=_24[0];
|
|
var _25=p.fcount||0;
|
|
if(fit){
|
|
if(!t.fitted){
|
|
t.fitted=true;
|
|
p.fcount=_25+1;
|
|
$(p).addClass("panel-noscroll");
|
|
if(p.tagName=="BODY"){
|
|
$("html").addClass("panel-fit");
|
|
}
|
|
}
|
|
return {width:($(p).width()||1),height:($(p).height()||1)};
|
|
}else{
|
|
if(t.fitted){
|
|
t.fitted=false;
|
|
p.fcount=_25-1;
|
|
if(p.fcount==0){
|
|
$(p).removeClass("panel-noscroll");
|
|
if(p.tagName=="BODY"){
|
|
$("html").removeClass("panel-fit");
|
|
}
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
};
|
|
function _22(_26,_27,_28,_29){
|
|
var t=$(_26);
|
|
var p=_27;
|
|
var p1=p.substr(0,1).toUpperCase()+p.substr(1);
|
|
var min=$.parser.parseValue("min"+p1,_29["min"+p1],_28);
|
|
var max=$.parser.parseValue("max"+p1,_29["max"+p1],_28);
|
|
var val=$.parser.parseValue(p,_29[p],_28);
|
|
var _2a=(String(_29[p]||"").indexOf("%")>=0?true:false);
|
|
if(!isNaN(val)){
|
|
var v=Math.min(Math.max(val,min||0),max||99999);
|
|
if(!_2a){
|
|
_29[p]=v;
|
|
}
|
|
t._size("min"+p1,"");
|
|
t._size("max"+p1,"");
|
|
t._size(p,v);
|
|
}else{
|
|
t._size(p,"");
|
|
t._size("min"+p1,min);
|
|
t._size("max"+p1,max);
|
|
}
|
|
return _2a||_29.fit;
|
|
};
|
|
function _21(_2b,_2c,_2d){
|
|
var t=$(_2b);
|
|
if(_2d==undefined){
|
|
_2d=parseInt(_2b.style[_2c]);
|
|
if(isNaN(_2d)){
|
|
return undefined;
|
|
}
|
|
if($._boxModel){
|
|
_2d+=_2e();
|
|
}
|
|
return _2d;
|
|
}else{
|
|
if(_2d===""){
|
|
t.css(_2c,"");
|
|
}else{
|
|
if($._boxModel){
|
|
_2d-=_2e();
|
|
if(_2d<0){
|
|
_2d=0;
|
|
}
|
|
}
|
|
t.css(_2c,_2d+"px");
|
|
}
|
|
}
|
|
function _2e(){
|
|
if(_2c.toLowerCase().indexOf("width")>=0){
|
|
return t.outerWidth()-t.width();
|
|
}else{
|
|
return t.outerHeight()-t.height();
|
|
}
|
|
};
|
|
};
|
|
};
|
|
})(jQuery);
|
|
(function($){
|
|
var _2f=null;
|
|
var _30=null;
|
|
var _31=false;
|
|
function _32(e){
|
|
if(e.touches.length!=1){
|
|
return;
|
|
}
|
|
if(!_31){
|
|
_31=true;
|
|
dblClickTimer=setTimeout(function(){
|
|
_31=false;
|
|
},500);
|
|
}else{
|
|
clearTimeout(dblClickTimer);
|
|
_31=false;
|
|
_33(e,"dblclick");
|
|
}
|
|
_2f=setTimeout(function(){
|
|
_33(e,"contextmenu",3);
|
|
},1000);
|
|
_33(e,"mousedown");
|
|
if($.fn.draggable.isDragging||$.fn.resizable.isResizing){
|
|
e.preventDefault();
|
|
}
|
|
};
|
|
function _34(e){
|
|
if(e.touches.length!=1){
|
|
return;
|
|
}
|
|
if(_2f){
|
|
clearTimeout(_2f);
|
|
}
|
|
_33(e,"mousemove");
|
|
if($.fn.draggable.isDragging||$.fn.resizable.isResizing){
|
|
e.preventDefault();
|
|
}
|
|
};
|
|
function _35(e){
|
|
if(_2f){
|
|
clearTimeout(_2f);
|
|
}
|
|
_33(e,"mouseup");
|
|
if($.fn.draggable.isDragging||$.fn.resizable.isResizing){
|
|
e.preventDefault();
|
|
}
|
|
};
|
|
function _33(e,_36,_37){
|
|
var _38=new $.Event(_36);
|
|
_38.pageX=e.changedTouches[0].pageX;
|
|
_38.pageY=e.changedTouches[0].pageY;
|
|
_38.which=_37||1;
|
|
$(e.target).trigger(_38);
|
|
};
|
|
if(document.addEventListener){
|
|
document.addEventListener("touchstart",_32,true);
|
|
document.addEventListener("touchmove",_34,true);
|
|
document.addEventListener("touchend",_35,true);
|
|
}
|
|
})(jQuery);
|
|
|