dtree.js 179 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311
  1. /**
  2. *@Name dtree 树形组件
  3. *@Author 智慧的小西瓜
  4. *@DOCS http://www.wisdomelon.com/DTreeHelper/
  5. *@License https://www.layui.com/
  6. *@LASTTIME 2019/5/20
  7. *@VERSION v2.5.0
  8. */
  9. layui.define(['jquery','layer','form'], function(exports) {
  10. var $ = layui.$,
  11. layer = layui.layer,
  12. form = layui.form;
  13. // 树的公共定义样式汇总
  14. var LI_NAV_CHILD = "dtree-nav-ul-sid", LI_NAV_ITEM = "dtree-nav-item",
  15. LI_DIV_ITEM = "dtree-nav-div", DTREEFONTSPECIAL="dtreefont-special", NONETITLE="dtree-none-text",
  16. LI_DIV_MENUBAR = "dtree-menubar",
  17. LI_DIV_TOOLBAR = "dtree-toolbar", TOOLBAR_TOOL = "dtree-toolbar-tool", TOOLBAR_TOOL_EM = "dtree-toolbar-fixed",
  18. LI_DIV_CHECKBAR = "dtree-nav-checkbox-div",
  19. LI_CLICK_CHECKBAR = "d-click-checkbar", //绑定点击复选框时需要用到
  20. LI_DIV_TEXT_CLASS = "t-click", UL_ROOT="dtree";
  21. // 树的公共指定
  22. var NAV_THIS = "dtree-nav-this", //当前节点
  23. NAV_SHOW = "dtree-nav-show", //显示子节点
  24. NAV_HIDE = "dtree-nav-hide", //隐藏节点
  25. NAV_DIS = "dtree-disabled", //禁用节点
  26. ICON_HIDE = "dtree-icon-hide", //隐藏图标
  27. $BODY = $("body"), //body选择器
  28. MOD_NAME = "dtree", //模块名称
  29. VERSION = "v2.5.0", //版本
  30. DTrees = {}; //当前被实例化的树的集合
  31. // 树的自定义图标
  32. var DTREEFONT = "dtreefont", //默认使用图标字体
  33. LI_DIV_SPREAD_LAST = "dtree-icon-dian", //一级图标小圆点
  34. LI_DIV_CHECKBAR_ON = "dtree-icon-fuxuankuangxuanzhong", //复选框选中图标
  35. LI_DIV_CHECKBAR_OUT = "dtree-icon-fuxuankuang", //复选框未选中图标
  36. LI_DIV_CHECKBAR_NOALL = "dtree-icon-fuxuankuang-banxuan", //复选框半选图标
  37. LI_DIV_MENUBAR_DOWN = "dtree-icon-move-down", //menubar的展开全部的图标
  38. LI_DIV_MENUBAR_UP = "dtree-icon-move-up", //menubar的收缩全部的图标
  39. LI_DIV_MENUBAR_REFRESH = "dtree-icon-refresh", //menubar的刷新图标
  40. LI_DIV_MENUBAR_CHECKALL = "dtree-icon-roundcheckfill", //menubar的全选图标
  41. LI_DIV_MENUBAR_UNCHECKALL = "dtree-icon-roundclosefill", //menubar的全不选图标
  42. LI_DIV_MENUBAR_INVERTALL = "dtree-icon-roundcheck", //menubar的反选图标
  43. LI_DIV_MENUBAR_DELETE = "dtree-icon-delete1", //menubar的删除图标
  44. LI_DIV_MENUBAR_SEARCH = "dtree-icon-search_list_light", //menubar的搜索图标
  45. LI_DIV_TOOLBAR_PULLDOWN = "dtree-icon-pulldown", //toolbar的展开图标
  46. LI_DIV_TOOLBAR_PULLUP = "dtree-icon-pullup", //toolbar的收缩图标
  47. LI_DIV_TOOLBAR_ADD = "dtree-icon-roundadd", //toolbar的新增图标
  48. LI_DIV_TOOLBAR_EDIT = "dtree-icon-bianji", //toolbar的编辑图标
  49. LI_DIV_TOOLBAR_DEL = "dtree-icon-roundclose"; //toolbar的删除图标
  50. // 树的一级节点图标集合
  51. var firstIconArray = {
  52. "-1": {"open": "dtree-icon-null-open", "close": "dtree-icon-null-close"}, //未指定
  53. "0" : {"open": "dtree-icon-jian", "close": "dtree-icon-jia"}, //+-图标(默认)
  54. "1" : {"open": "dtree-icon-xiangxia1", "close": "dtree-icon-xiangyou"} //箭头图标
  55. };
  56. // 树的二级节点图标集合
  57. var nodeIconArray = {
  58. "-1": {"open": "dtree-icon-null-open", "close": "dtree-icon-null-close"}, //未指定
  59. "0" : {"open": "dtree-icon-wenjianjiazhankai", "close": "dtree-icon-weibiaoti5"} //文件夹(默认)
  60. };
  61. var leafIconArray = {
  62. "-1": "dtree-icon-null", //未指定
  63. "0" : "dtree-icon-weibiaoti5", //文件夹
  64. "1" : "dtree-icon-yonghu", //人员
  65. "2" : "dtree-icon-fenzhijigou", //机构
  66. "3" : "dtree-icon-fenguangbaobiao", //报表
  67. "4" : "dtree-icon-xinxipilu", //信息
  68. "5" : "dtree-icon-shuye1", //叶子(默认)
  69. "6" : "dtree-icon-caidan_xunzhang", //勋章
  70. "7" : "dtree-icon-normal-file" //文件
  71. };
  72. // 树的自定义样式
  73. var DTREE = "dtree-", //自定义样式前缀
  74. ITEMTHIS = "-item-this", //自定义样式当前行选中后缀
  75. ITEM = "-item", //自定义样式当前行后缀
  76. DFONT = "-dtreefont", //自定义样式图标样式后缀
  77. FICON = "-ficon", //自定义样式一级图标样式后缀
  78. ICON = "-icon", //自定义样式二级图标样式后缀
  79. CBOX = "-checkbox", //自定义样式复选框样式后缀
  80. CHS = "-choose"; //自定义样式复选框选中样式后缀
  81. // 树自定义操作事件名称集合 绑定dtree-click的事件
  82. var eventName = {
  83. checkNodeClick: "checkNodeClick", //点击复选框
  84. itemNodeClick: "itemNodeClick" //点击子节点div
  85. };
  86. // 树默认toolbar提供的功能集合 绑定dtree-tool的事件
  87. var defaultTool = {
  88. pulldown: "pulldown", //点击展开当前节点下的全部节点
  89. pullup: "pullup", //点击收缩当前节点下的全部节点
  90. addTool: "addToolbar", //点击toolbar新增
  91. editTool: "editToolbar", //点击toolbar编辑
  92. delTool: "delToolbar" //点击toolbar删除
  93. };
  94. // 树默认menubar提供的功能集合 绑定dtree-menu的事件
  95. var defaultMenu = {
  96. moveDown: "moveDown", //menubar展开全部节点
  97. moveUp: "moveUp", //menubar收缩全部节点
  98. refresh: "refresh", //menubar刷新树
  99. checkAll: "checkAll", //menubar全选
  100. unCheckAll: "unCheckAll", //menubar全不选
  101. invertAll: "invertAll", //menubar反选
  102. remove: "remove", //menubar删除选中节点
  103. searchNode: "searchNode" //menubar查询节点
  104. };
  105. // 树的公共事件
  106. var event = {
  107. getElemId: function(options){ // 根据传入的参数获取ID
  108. var elem = options.elem || "";
  109. var obj = options.obj || $(elem);
  110. if (obj.length == 0) { //页面中未找到绑定id
  111. return "";
  112. } else {
  113. return $(obj)[0].id;
  114. }
  115. },
  116. escape: function(html){
  117. if(typeof html !== 'string') return '';
  118. return html.replace(entityReg.escape, function(match){return entityMap.escape[match];});
  119. },
  120. unescape: function(str){
  121. if(typeof str !== 'string') return '';
  122. return str.replace(entityReg.unescape, function(match){return entityMap.unescape[match];});
  123. },
  124. cloneObj: function (obj, filter) { //深复制对象方法
  125. var newObj = {};
  126. if (obj instanceof Array) {
  127. newObj = [];
  128. }
  129. var str = "";
  130. if(typeof filter !== 'undefined') {str = filter.join(",");}
  131. for (var key in obj) {
  132. if(str.indexOf(key) == -1){
  133. var val = obj[key];
  134. newObj[key] = typeof val === 'object' ? event.cloneObj(val, typeof filter !== undefined ? filter : []): val;
  135. }
  136. }
  137. return newObj;
  138. },
  139. trimToDot: function(str){
  140. return str.replace(/ /g, ".");
  141. }
  142. };
  143. // 特殊符号转义
  144. var keys = Object.keys || function(obj) {
  145. obj = Object(obj);
  146. var arr = [];
  147. for(var a in obj) arr.push(a);
  148. return arr;
  149. };
  150. var invert = function(obj){
  151. obj = Object(obj);
  152. var result = {};
  153. for(var a in obj) result[obj[a]] = a;
  154. return result;
  155. };
  156. var entityMap = {
  157. escape: {
  158. "&" : "&",
  159. "<" : "&lt;",
  160. ">" : "&gt;",
  161. "'" : "&quo;"
  162. }
  163. };
  164. entityMap.unescape = invert(entityMap.escape);
  165. var entityReg = {
  166. escape: RegExp('[' + keys(entityMap.escape).join('') + ']', 'g'),
  167. unescape: RegExp('(' + keys(entityMap.unescape).join('|') + ')', 'g')
  168. };
  169. //异步加载接口
  170. var AjaxHelper = {
  171. request : function(config) {
  172. var data = config.data ? config.data : {};
  173. var async = (typeof (config.async) === "boolean") ? config.async : true;
  174. $.ajax({
  175. type : config.type ? config.type : "POST",
  176. headers : config.headers,
  177. url : config.url,
  178. dataType : config.dataType ? config.dataType : "json",
  179. data : data,
  180. async : async,
  181. contentType : config.contentType ? config.contentType : "application/x-www-form-urlencoded",
  182. success : config.success,
  183. error : function(XMLHttpRequest, textStatus, errorThrown) {
  184. if (typeof (config.error) === "function") {
  185. config.error(XMLHttpRequest, textStatus, errorThrown);
  186. } else {
  187. layer.msg("异步加载失败: " + textStatus,{icon:5, shift:6});
  188. }
  189. },
  190. statusCode : {
  191. 404 : function() {
  192. layer.msg('未找到指定请求,请检查访问路径!',{icon:5, shift:6});
  193. },
  194. 500 : function() {
  195. layer.msg('系统错误!',{icon:5, shift:6});
  196. }
  197. },
  198. complete : function(XMLHttpRequest, textStatus) {
  199. if (typeof (config.complete) === "function") {
  200. config.complete(XMLHttpRequest, textStatus);
  201. }
  202. }
  203. });
  204. },
  205. serialize: function(param){ //json序列化 key=value&key1=value1
  206. var p = "?";
  207. for (var key in param) {
  208. p += key + "=" + param[key] + "&";
  209. }
  210. p = p.substring(0, p.length-1);
  211. return p;
  212. }
  213. };
  214. // 树类
  215. var DTree = function(options){
  216. var _this = this;
  217. /** 默认赋值**/
  218. this.formatter = { // 数据过滤
  219. title: false // 文字,默认不开启
  220. };
  221. this.response = { // 树返回的json格式
  222. statusName: "code", //返回标识
  223. statusCode: 200, //返回码
  224. message: "message", //返回信息
  225. rootName: "data", //根节点名称
  226. treeId: "id", //节点ID
  227. parentId: "parentId", //父节点ID
  228. title: "title", //节点名称
  229. iconClass: "iconClass", //自定义图标
  230. childName: "children", //子节点名称
  231. last: "last", //是否最后一级节点
  232. // level: "level", //层级
  233. spread: "spread", //展开
  234. disabled: "disabled", //禁用
  235. hide: "hide", //隐藏
  236. checkArr: "checkArr", //复选框列表
  237. checked: "checked", //是否选中
  238. type: "type", //复选框标记
  239. basicData: "basicData" //表示用户自定义需要存储在树节点中的数据
  240. };
  241. this.defaultRequest = { // 树的默认发起请求参数格式,最后会将value作为参数名称传递
  242. nodeId: "nodeId", //节点ID
  243. parentId: "parentId", //父节点ID
  244. context: "context", //节点内容
  245. leaf: "leaf", //是否叶子节点
  246. level: "level", //层级
  247. spread: "spread", //节点展开状态
  248. dataType: "dataType", //节点标记
  249. checked: "checked", //节点复选框选中状态
  250. initchecked: "initchecked", //节点复选框初始状态
  251. basicData: "basicData", //用户自定义的记录节点数据
  252. recordData: "recordData", //当前data数据(排除basicData和children字段)
  253. };
  254. this.toolbarFun = {
  255. addTreeNode: function(param, $div) { //添加树节点后调用的函数,用于用户自定义,如未指定则树不会发生变化
  256. return ;
  257. },
  258. editTreeNode: function(param, $div) { //编辑树节点后调用的函数,用于用户自定义,如未指定则树不会发生变化
  259. return ;
  260. },
  261. editTreeLoad: function(param){ // 编辑树的数据回显,用于打开编辑时,回填数据
  262. return ;
  263. },
  264. delTreeNode: function(param, $div){ //删除树后调用的函数,用于用户自定义,如未指定则树不会发生变化
  265. return ;
  266. },
  267. loadToolbarBefore: function(buttons, param, $div){ // 右键菜单加载前的函数
  268. return buttons;
  269. }
  270. };
  271. this.toolbarStyle = {
  272. title: "节点",
  273. area: ["60%","80%"]
  274. };
  275. this.menubarFun = {
  276. remove: function(checkbarNodes){ //删除复选框选中节点,需要用户自定义,如未指定则树只是页面上做了修改
  277. return true;
  278. }
  279. };
  280. this.menubarTips = {
  281. toolbar: [],
  282. group: [defaultMenu.moveDown, defaultMenu.moveUp, defaultMenu.refresh, defaultMenu.checkAll, defaultMenu.unCheckAll, defaultMenu.invertAll, defaultMenu.remove, defaultMenu.searchNode],
  283. freedom: []
  284. };
  285. this.checkbarFun = {
  286. chooseBefore: function($i, node){ // 复选框点击前回调
  287. return true;
  288. },
  289. chooseDone: function(checkbarNodesParam) { //复选框点击事件完毕后,返回该树关于复选框操作的全部信息,用于用户自定义,如未指定则树只是页面上做了修改
  290. return ;
  291. }
  292. };
  293. this.iframe = { // 树点击节点时,打开iframe页面参数配置
  294. iframeElem: "", //iframe的ID
  295. iframeUrl: "", //树关联的frame地址
  296. iframeLoad: "leaf", //点击哪一层加载frame: node:所有节点, leaf:默认,最后一级
  297. iframeDefaultRequest: { //iframe的默认参数,目的是与加载树的参数不一样
  298. nodeId: "nodeId", //节点ID
  299. parentId: "parentId", //父节点ID
  300. context: "context", //节点内容
  301. leaf: "leaf", //是否叶子节点
  302. level: "level", //层级
  303. spread: "spread", //节点展开状态
  304. dataType: "dataType", //节点标记
  305. checked: "checked", //节点复选框选中状态
  306. initchecked: "initchecked", //节点复选框初始状态
  307. basicData: "basicData", //用户自定义的记录节点数据
  308. recordData: "recordData", //当前data数据(排除basicData和children字段)
  309. },
  310. iframeRequest: {} //iframe的自定义参数
  311. };
  312. this.iframeFun = {
  313. iframeDone: function(iframeParam){ //iframe加载完毕后,用于用户自定义事件
  314. return ;
  315. }
  316. };
  317. this.style = { //树最终使用的样式集合
  318. item: "", //每一项div的样式
  319. itemThis: "", //选中div的样式
  320. dfont: "", //一级图标的样式
  321. icon: "", //二级图标的样式
  322. cbox: "", //复选框的样式
  323. chs: "" //复选框选中的样式
  324. };
  325. this.usefontStyle = { //树最终使用的图标集合
  326. fnode:{ //一级节点
  327. node:{ //非叶子节点
  328. open:"", //节点展开
  329. close:"" //节点关闭
  330. },
  331. dot:"" //叶子节点
  332. },
  333. snode:{ //二级节点
  334. node:{ //非叶子节点
  335. open:"", //节点展开
  336. close:"" //节点关闭
  337. },
  338. leaf:"" //叶子节点
  339. },
  340. checkbox:{ //复选框
  341. on:"", //复选框选中
  342. out:"", //未选中
  343. noall:"" //半选
  344. },
  345. menubar:{ //菜单栏
  346. movedown:"", //全部展开
  347. moveup:"", //全部收缩
  348. refresh:"", //刷新
  349. checkAll:"", //全选
  350. unCheckAll:"", //全不选
  351. invertAll:"", //反选
  352. remove:"", //删除
  353. search:"" //搜索
  354. },
  355. menubarExt:"", //扩展菜单栏
  356. toolbar:{ //工具栏
  357. menubar:{ //依附在菜单栏的工具栏
  358. movedown:"", //全部展开
  359. moveup:"", //全部收缩
  360. refresh:"", //刷新
  361. checkAll:"", //全选
  362. unCheckAll:"", //全不选
  363. invertAll:"", //反选
  364. remove:"", //删除
  365. search:"" //搜索
  366. },
  367. menubarExt:"", //依附在菜单栏的扩展菜单栏
  368. pulldown:"", //展开
  369. pullup:"", //收缩
  370. add:"", //添加
  371. edit:"", //编辑
  372. del:"" //删除
  373. },
  374. toolbarExt:"" //扩展工具栏
  375. }
  376. /** 数据绑定**/
  377. this.node = { // 树节点选中时,包含当前节点的全部信息
  378. nodeId: "", //节点ID
  379. parentId: "", //父节点ID
  380. context: "", //节点内容
  381. leaf: "", //是否叶子节点
  382. level: "", //层级
  383. spread: "", //节点展开状态
  384. dataType: "", //节点标记
  385. checked: "", //节点复选框选中状态
  386. initchecked: "", //节点复选框初始状态
  387. basicData: "", //用户自定义的记录节点数据
  388. recordData: "", //当前data数据(排除basicData和children字段)
  389. };
  390. this.toolbarMenu = {}; // 工具栏右键菜单绑定的所有元素
  391. this.checkbarNode = []; // 复选框标记的全部节点数据
  392. this.errData = []; // 记录在渲染节点时有问题的数据
  393. this.checkArrLen = 0; //添加节点的时判断复选框个数
  394. this.temp = []; // 临时变量
  395. this.setting(options);
  396. };
  397. /******************** 初始参数加载 ********************/
  398. // 设置值
  399. DTree.prototype.setting = function(options) {
  400. this.options = options || {};
  401. /** 绑定元素参数(必填,2个参数项必填一个)**/
  402. this.elem = this.options.elem || ""; //树绑定的元素ID:#elem
  403. this.obj = this.options.obj || $(this.elem); //树绑定的jquery元素,用于当元素是延迟加载出来的话,可以用这个找到
  404. /** 基本参数**/
  405. this.accordion = (typeof (this.options.accordion) === "boolean") ? this.options.accordion : false; //开启手风琴加载
  406. if(this.accordion) {
  407. this.initLevel = 1; //默认展开节点 1节
  408. } else {
  409. this.initLevel = this.options.initLevel || 2; //默认展开节点 2节
  410. }
  411. this.type = this.options.type || "load"; // 树的加载方式 all,全量树, load,增量树,默认load
  412. this.cache = (typeof (this.options.cache) === "boolean") ? this.options.cache : true; //开启数据缓存
  413. this.record = (typeof (this.options.record) === "boolean") ? this.options.record : false; //开启数据记录模式
  414. this.load = (typeof (this.options.load) === "boolean") ? this.options.load : true; //开启加载动画
  415. this.none = this.options.none || "无数据"; // 初始加载无记录时显示文字
  416. /** 样式相关参数**/
  417. this.iconfont = this.options.iconfont || DTREEFONT; // 默认图标字体 dtreefont
  418. this.iconfontStyle = this.options.iconfontStyle || {}; // 用于自定义树的每个关键部位使用的图标
  419. this.firstIconArray = $.extend(firstIconArray, this.options.firstIconArray) || firstIconArray; //用户自定义一级图标集合,node
  420. this.nodeIconArray = $.extend(nodeIconArray, this.options.nodeIconArray) || nodeIconArray; //用户自定义二级图标集合,node
  421. this.leafIconArray = $.extend(leafIconArray, this.options.leafIconArray) || leafIconArray; //用户自定义二级图标集合,leaf
  422. this.skin = this.options.skin || "theme"; // 自定义样式
  423. if(this.skin == "layui"){ // layui主题
  424. this.ficon = this.options.ficon || "1"; // 一级图标样式,0:+,-
  425. this.dot = (typeof (this.options.dot) === "boolean") ? this.options.dot : false; //是否显示一级图标的小圆点,默认不显示
  426. this.icon = this.options.icon || "7"; //二级图标样式,0:文件夹,1:人员,2:机构,3:报表,4:信息,5:叶子,6:勋章, -1:不显示二级图标。默认'1'
  427. this.nodeIcon = (typeof this.icon === 'string' || typeof this.icon === 'number') ? (this.icon == "-1" ? "-1" : "-1") : this.icon[0]; // 二级图标中的node节点图标
  428. this.leafIcon = (typeof this.icon === 'string' || typeof this.icon === 'number') ? this.icon : this.icon[1]; // 二级图标中的leaf节点图标
  429. } else { // 默认主题 或者自定义主题
  430. this.ficon = this.options.ficon || "0"; // 一级图标样式,0:+,-
  431. this.dot = (typeof (this.options.dot) === "boolean") ? this.options.dot : true; //是否显示一级图标的小圆点,默认显示
  432. this.icon = this.options.icon || "5"; //二级图标样式,0:文件夹,1:人员,2:机构,3:报表,4:信息,5:叶子,6:勋章, -1:不显示二级图标。默认'5'
  433. this.nodeIcon = (typeof this.icon === 'string' || typeof this.icon === 'number') ? (this.icon == "-1" ? "-1" : "0") : this.icon[0]; // 二级图标中的node节点图标
  434. this.leafIcon = (typeof this.icon === 'string' || typeof this.icon === 'number') ? this.icon : this.icon[1]; // 二级图标中的leaf节点图标
  435. }
  436. /** 数据加载参数**/
  437. this.url = this.options.url || ""; //请求地址
  438. this.async = (typeof (this.options.async) === "boolean") ? this.options.async : true; //异步同步加载,默认异步加载
  439. this.headers = this.options.headers || {}; // ajax header属性
  440. this.method = this.options.method || "post"; //请求类型
  441. this.dataType = this.options.dataType || "json"; //参数类型
  442. this.contentType = this.options.contentType || "application/x-www-form-urlencoded"; //发送信息至服务器时内容编码类型
  443. this.defaultRequest = $.extend(this.defaultRequest, this.options.defaultRequest) || this.defaultRequest; //默认请求参数
  444. this.filterRequest = this.options.filterRequest || []; //过滤请求参数
  445. this.request = this.options.request || {}; //用户自定义请求参数
  446. this.response = $.extend(this.response, this.options.response) || this.response; //返回json格式
  447. this.data = this.options.data || null; //初始化指定该参数,则不会访问异步接口
  448. this.dataFormat = this.options.dataFormat || "levelRelationship"; //用于用户配置的data数据格式,list:列表, levelRelationship:层级关系,默认
  449. this.dataStyle = this.options.dataStyle || "defaultStyle"; //用于用户配置layui通用的json数据风格,layuiStyle:layui风格,defaultStyle:默认风格
  450. this.errDataShow = (typeof (this.options.errDataShow) === "boolean") ? this.options.errDataShow : false; //是否在递归数据出现错误后,显示错误信息
  451. this.success = this.options.success || function(data, obj){}; //树加载完毕后执行解析树之前的回调(仅限异步加载)
  452. this.done = this.options.done || function(data, obj){}; //树加载完毕后的回调(仅限异步加载)
  453. this.formatter = $.extend(this.formatter, this.options.formatter)|| this.formatter ; // 数据过滤
  454. this.error = this.options.error || function(XMLHttpRequest, textStatus, errorThrown){}; // 异步加载异常回调
  455. this.complete = this.options.complete || function(XMLHttpRequest, textStatus){}; // 异步加载完成回调
  456. /** 复选框参数**/
  457. this.checkbar = this.options.checkbar || false; //是否开启复选框模式
  458. this.checkbarLoad = this.options.checkbarLoad || "node"; // 复选框作用范围,node:所有节点, leaf:最后一级;默认所有节点
  459. this.checkbarType = this.options.checkbarType || "all" ; //复选框选中形式 all:子集选中父级也选中, no-all:子集选中父级半选中,子集全选父级选中,p-casc:父级选中子集全选,子集无法改变父级选中状态, self:没有任何级联关系,only:只能选中一个复选框。 默认all
  460. this.checkbarData = this.options.checkbarData || "choose" ; //复选框记录数据类型形式, change表示记录变更数据,choose表示记录选中数据,all记录全部数据,halfChoose记录选中和半选中的数据,默认choose
  461. this.checkbarFun = $.extend(this.checkbarFun, this.options.checkbarFun) || this.checkbarFun; // checkbar事件加载
  462. /** 菜单栏参数**/
  463. this.menubar = this.options.menubar || false; //是否打开菜单栏
  464. this.menubarTips = $.extend(this.menubarTips, this.options.menubarTips) || this.menubarTips; // 菜单栏吸附, toolbar:依附在工具栏,group:依附在按钮组,freedom,自由
  465. this.menubarFun = $.extend(this.menubarFun, this.options.menubarFun) || this.menubarFun; //menubar事件加载
  466. /** 工具栏参数**/
  467. this.toolbar = this.options.toolbar || false; //是否开启可编辑模式
  468. this.toolbarWay = this.options.toolbarWay || "contextmenu"; //工具栏显示方式,contextmenu:右键,follow:跟随节点,fixed:固定在节点右侧
  469. this.toolbarStyle = $.extend(this.toolbarStyle, this.options.toolbarStyle) || this.toolbarStyle; //toolbar的自定义风格,标题,弹框大小
  470. this.toolbarScroll = this.options.toolbarScroll || this.elem; //树的上级div容器,让树可以显示滚动条的div容器的ID
  471. this.toolbarLoad = this.options.toolbarLoad || "node"; //toolbar作用范围:node:所有节点,noleaf:非最后一级节点,leaf:最后一级
  472. this.toolbarShow = this.options.toolbarShow || ["add","edit","delete"]; // toolbar三个按钮自定义加载
  473. this.toolbarBtn = this.options.toolbarBtn || null; // toolbar增删改中内容的自定义加载
  474. this.toolbarExt = this.options.toolbarExt || []; // toolbar按钮扩展
  475. this.toolbarFun = $.extend(this.toolbarFun, this.options.toolbarFun) || this.toolbarFun; // toolbar事件加载
  476. /** iframe模式参数**/
  477. this.useIframe = this.options.useIframe || false; // 是否加载iframe 默认false,
  478. if(this.options.iframe) {
  479. this.iframe.iframeElem = this.options.iframe.iframeElem || this.iframe.iframeElem; //iframe配置
  480. this.iframe.iframeUrl = this.options.iframe.iframeUrl || this.iframe.iframeUrl; //iframe配置
  481. this.iframe.iframeLoad = this.options.iframe.iframeLoad || this.iframe.iframeLoad; //iframe配置
  482. this.iframe.iframeDefaultRequest = $.extend(this.iframe.iframeDefaultRequest, this.options.iframe.iframeDefaultRequest) || this.iframe.iframeDefaultRequest; //iframe配置
  483. this.iframe.iframeRequest = $.extend(this.iframe.iframeRequest, this.options.iframe.iframeRequest) || this.iframe.iframeRequest; //iframe配置
  484. }
  485. this.iframeFun = $.extend(this.iframeFun, this.options.iframeFun) || this.iframeFun; //iframe事件加载
  486. /** 拖拽模式参数*/
  487. this.drawable = (typeof (this.options.drawable) === "boolean") ? this.options.drawable : false; // 是否开启拖拽模式,默认false
  488. /** 调用确认最终主题方法*/
  489. this.ensureTheme();
  490. };
  491. // 设置值
  492. DTree.prototype.reloadSetting = function(options) {
  493. this.options = $.extend(this.options, options) || this.options;
  494. /** 绑定元素参数**/
  495. this.elem = this.options.elem || this.elem; //树绑定的元素ID:#elem
  496. if(typeof this.options.obj === 'undefined'){
  497. if(this.elem) {
  498. if($(this.elem).length > 0) {
  499. this.obj = $(this.elem);
  500. }
  501. }
  502. } else {
  503. this.obj = this.options.obj || this.obj; //树绑定的jquery元素,用于当元素是延迟加载出来的话,可以用这个找到
  504. }
  505. /** 基本参数**/
  506. this.accordion = (typeof (this.options.accordion) === "boolean") ? this.options.accordion : this.accordion; //开启手风琴加载
  507. if(this.accordion) {
  508. this.initLevel = 1; //默认展开节点 1节
  509. } else {
  510. this.initLevel = this.options.initLevel || this.initLevel; //默认展开节点 2节
  511. }
  512. this.type = this.options.type || this.type; // 树的加载方式 all,全量树, load,增量树,默认load
  513. this.cache = (typeof (this.options.cache) === "boolean") ? this.options.cache : this.cache; //开启数据缓存
  514. this.record = (typeof (this.options.record) === "boolean") ? this.options.record : this.record; //开启数据记录模式
  515. this.load = (typeof (this.options.load) === "boolean") ? this.options.load : this.load; //开启加载动画
  516. this.none = this.options.none || this.none; // 初始节点加载无数据时显示文字
  517. /** 样式相关参数**/
  518. this.iconfont = this.options.iconfont || this.iconfont; // 默认图标字体 dtreefont
  519. this.iconfontStyle = this.options.iconfontStyle || this.iconfontStyle; // 用于自定义树的每个关键部位使用的图标
  520. this.firstIconArray = $.extend(firstIconArray, this.options.firstIconArray) || this.firstIconArray; //用户自定义一级图标集合,node
  521. this.nodeIconArray = $.extend(nodeIconArray, this.options.nodeIconArray) || this.nodeIconArray; //用户自定义二级图标集合,node
  522. this.leafIconArray = $.extend(leafIconArray, this.options.leafIconArray) || this.leafIconArray; //用户自定义二级图标集合,leaf
  523. this.skin = this.options.skin || this.skin; // 自定义样式
  524. if(this.skin == "layui"){ // layui主题
  525. this.ficon = this.options.ficon || this.ficon; // 一级图标样式,0:+,-
  526. this.dot = (typeof (this.options.dot) === "boolean") ? this.options.dot : false; //是否显示一级图标的小圆点,默认不显示
  527. this.icon = this.options.icon || this.icon; //二级图标样式,0:文件夹,1:人员,2:机构,3:报表,4:信息,5:叶子,6:勋章, -1:不显示二级图标。默认'1'
  528. this.nodeIcon = (typeof this.icon === 'string' || typeof this.icon === 'number') ? (this.icon == "-1" ? "-1" : "-1") : this.icon[0]; // 二级图标中的node节点图标
  529. this.leafIcon = (typeof this.icon === 'string' || typeof this.icon === 'number') ? this.icon : this.icon[1]; // 二级图标中的leaf节点图标
  530. } else { // 默认主题 或者自定义主题
  531. this.ficon = this.options.ficon || this.ficon; // 一级图标样式,0:+,-
  532. this.dot = (typeof (this.options.dot) === "boolean") ? this.options.dot : true; //是否显示一级图标的小圆点,默认显示
  533. this.icon = this.options.icon || this.icon; //二级图标样式,0:文件夹,1:人员,2:机构,3:报表,4:信息,5:叶子,6:勋章, -1:不显示二级图标。默认'5'
  534. this.nodeIcon = (typeof this.icon === 'string' || typeof this.icon === 'number') ? (this.icon == "-1" ? "-1" : "0") : this.icon[0]; // 二级图标中的node节点图标
  535. this.leafIcon = (typeof this.icon === 'string' || typeof this.icon === 'number') ? this.icon : this.icon[1]; // 二级图标中的leaf节点图标
  536. }
  537. /** 数据加载参数**/
  538. this.url = this.options.url || this.url; //请求地址
  539. this.async = (typeof (this.options.async) === "boolean") ? this.options.async : this.async; //异步同步加载,默认异步加载
  540. this.headers = this.options.headers || this.headers; // ajax header属性
  541. this.method = this.options.method || this.method; //请求类型
  542. this.dataType = this.options.dataType || this.dataType; //参数类型
  543. this.contentType = this.options.contentType || this.contentType; //发送信息至服务器时内容编码类型
  544. this.defaultRequest = $.extend(this.defaultRequest, this.options.defaultRequest) || this.defaultRequest; //默认请求参数
  545. this.filterRequest = this.options.filterRequest || this.filterRequest; //过滤请求参数
  546. this.request = this.options.request || this.request; //用户自定义请求参数
  547. this.response = $.extend(this.response, this.options.response) || this.response; //返回json格式
  548. this.data = this.options.data || this.data; //初始化指定该参数,则不会访问异步接口
  549. this.dataFormat = this.options.dataFormat || this.dataFormat; //用于用户配置的data数据格式,list:列表, levelRelationship:层级关系,默认
  550. this.dataStyle = this.options.dataStyle || this.dataStyle; //用于用户配置layui通用的json数据风格,layuiStyle:layui风格,defaultStyle:默认风格
  551. this.errDataShow = (typeof (this.options.errDataShow) === "boolean") ? this.options.errDataShow : this.errDataShow; //是否在使用list模式递归数据出现错误时,显示错误信息
  552. this.success = this.options.success || this.success; //树加载完毕后执行解析树之前的回调(仅限异步加载)
  553. this.done = this.options.done || this.done; //树加载完毕后的回调(仅限异步加载)
  554. this.formatter = $.extend(this.formatter, this.options.formatter)|| this.formatter ; // 数据过滤
  555. this.error = this.options.error || this.error; // 异步加载异常回调
  556. this.complete = this.options.complete || this.complete; // 异步加载完成回调
  557. /** 复选框参数**/
  558. this.checkbar = this.options.checkbar || this.checkbar; //是否开启复选框模式
  559. this.checkbarLoad = this.options.checkbarLoad || this.checkbarLoad; // 复选框作用范围,node:所有节点, leaf:最后一级;默认所有节点
  560. this.checkbarType = this.options.checkbarType || this.checkbarType ; //复选框选中形式 all:子集选中父级也选中, no-all:子集选中父级半选中,子集全选父级选中,p-casc:父级选中子集全选,子集无法改变父级选中状态, self:没有任何级联关系,only:只能选中一个复选框。 默认all
  561. this.checkbarData = this.options.checkbarData || this.checkbarData ; //复选框记录数据类型形式, change表示记录变更数据,choose表示记录选中数据,all记录全部数据,halfChoose记录选中和半选中的数据,默认choose
  562. this.checkbarFun = $.extend(this.checkbarFun, this.options.checkbarFun)|| this.checkbarFun ; // checkbar事件加载
  563. /** 菜单栏参数**/
  564. this.menubar = this.options.menubar || this.menubar; //是否打开菜单栏
  565. this.menubarTips = $.extend(this.menubarTips, this.options.menubarTips) || this.menubarTips; // 菜单栏吸附, toolbar:依附在工具栏,group:依附在按钮组,freedom,自由
  566. this.menubarFun = $.extend(this.menubarFun, this.options.menubarFun) || this.menubarFun; //menubar事件加载
  567. /** 工具栏参数**/
  568. this.toolbar = this.options.toolbar || this.toolbar; //是否开启工具栏
  569. this.toolbarWay = this.options.toolbarWay || this.toolbarWay; //工具栏显示方式,contextmenu:右键,follow:跟随节点,fixed:固定在节点右侧
  570. this.toolbarStyle = $.extend(this.toolbarStyle, this.options.toolbarStyle) || this.toolbarStyle; //toolbar的自定义风格,标题,弹框大小
  571. this.toolbarScroll = this.options.toolbarScroll || this.toolbarScroll; //树的上级div容器,让树可以显示滚动条的div容器
  572. this.toolbarLoad = this.options.toolbarLoad || this.toolbarLoad; //toolbar作用范围:node:所有节点,noleaf:非最后一级节点,leaf:最后一级
  573. this.toolbarShow = this.options.toolbarShow || this.toolbarShow; // toolbar三个按钮
  574. this.toolbarBtn = this.options.toolbarBtn || this.toolbarBtn; // toolbar增删改中内容的自定义加载
  575. this.toolbarExt = this.options.toolbarExt || this.toolbarExt; // toolbar按钮扩展
  576. this.toolbarFun = $.extend(this.toolbarFun, this.options.toolbarFun) || this.toolbarFun; // toolbar事件加载
  577. /** iframe模式参数**/
  578. this.useIframe = this.options.useIframe || this.useIframe; // 是否加载iframe 默认false,
  579. if(this.options.iframe) {
  580. this.iframe.iframeElem = this.options.iframe.iframeElem || this.iframe.iframeElem; //iframe配置
  581. this.iframe.iframeUrl = this.options.iframe.iframeUrl || this.iframe.iframeUrl; //iframe配置
  582. this.iframe.iframeLoad = this.options.iframe.iframeLoad || this.iframe.iframeLoad; //iframe配置
  583. this.iframe.iframeDefaultRequest = $.extend(this.iframe.iframeDefaultRequest, this.options.iframe.iframeDefaultRequest) || this.iframe.iframeDefaultRequest; //iframe配置
  584. this.iframe.iframeRequest = $.extend(this.iframe.iframeRequest, this.options.iframe.iframeRequest) || this.iframe.iframeRequest; //iframe配置
  585. }
  586. this.iframeFun = $.extend(this.iframeFun, this.options.iframeFun) || this.iframeFun; //iframe事件加载
  587. /** 拖拽模式参数*/
  588. this.drawable = (typeof (this.options.drawable) === "boolean") ? this.options.drawable : this.drawable; // 是否开启拖拽模式,默认false
  589. /** 调用确认最终主题方法*/
  590. this.ensureTheme();
  591. };
  592. /******************** 字体及图标区域 ********************/
  593. // 确认最终主题
  594. DTree.prototype.ensureTheme = function(){
  595. var _this = this;
  596. // 确认style
  597. this.style.item = DTREE + this.skin + ITEM;
  598. this.style.itemThis = DTREE + this.skin + ITEMTHIS;
  599. this.style.dfont = DTREE + this.skin + DFONT;
  600. this.style.ficon = DTREE + this.skin + FICON;
  601. this.style.icon = DTREE + this.skin + ICON;
  602. this.style.cbox = DTREE + this.skin + CBOX;
  603. this.style.chs = DTREE + this.skin + CHS;
  604. // 确认usefontStyle
  605. var iconfont = this.iconfont;
  606. var iconfonts = [];
  607. if(typeof iconfont === 'string') {
  608. iconfonts.push(iconfont);
  609. } else {
  610. iconfonts = iconfont;
  611. }
  612. var iconfontStyle = this.iconfontStyle;
  613. var iconfontStyles = [];
  614. if(iconfontStyle.length == undefined) {
  615. iconfontStyles.push(iconfontStyle);
  616. } else {
  617. iconfontStyles = iconfontStyle;
  618. }
  619. for(var i=0; i<iconfonts.length; i++){
  620. var ifont = iconfonts[i];
  621. var ifontStyle = iconfontStyles[i];
  622. if(typeof ifontStyle !== 'undefined') {
  623. // 判断,赋值
  624. this.useDefaultOrUserDefineFnodeStyle(ifont, ifontStyle.fnode);
  625. this.useDefaultOrUserDefineSnodeStyle(ifont, ifontStyle.snode);
  626. this.useDefaultOrUserDefineCheckboxStyle(ifont, ifontStyle.checkbox);
  627. this.useDefaultOrUserDefineMenubarStyle(ifont, ifontStyle.menubar);
  628. this.useDefaultOrUserDefineMenubarExtStyle(ifont, ifontStyle.menubarExt);
  629. this.useDefaultOrUserDefineToolbarStyle(ifont, ifontStyle.toolbar);
  630. this.useDefaultOrUserDefineToolbarExtStyle(ifont, ifontStyle.toolbarExt);
  631. }
  632. }
  633. };
  634. // 赋值一级图标
  635. DTree.prototype.useDefaultOrUserDefineFnodeStyle = function(ifont, fnode){
  636. var _this = this;
  637. var tempOpen = this.usefontStyle.fnode.node.open;
  638. var tempClose = this.usefontStyle.fnode.node.close;
  639. var tempDot = this.usefontStyle.fnode.dot;
  640. if(typeof fnode === 'undefined'){
  641. this.usefontStyle.fnode.node.open = (tempOpen == "") ? (ifont + " " + this.firstIconArray[this.ficon]["open"]) : tempOpen; // 一级图标中的node节点open图标
  642. this.usefontStyle.fnode.node.close = (tempClose == "") ? (ifont + " " + this.firstIconArray[this.ficon]["close"]) : tempClose; // 一级图标中的node节点close图标
  643. this.usefontStyle.fnode.dot = (tempDot == "") ? (ifont + " " + LI_DIV_SPREAD_LAST) : tempDot; // 一级图标中的node节点dot图标
  644. } else {
  645. var node = fnode.node;
  646. var dot = fnode.dot;
  647. if(typeof node === 'undefined'){
  648. this.usefontStyle.fnode.node.open = (tempOpen == "") ? (ifont + " " + this.firstIconArray[this.ficon]["open"]) : tempOpen; // 一级图标中的node节点open图标
  649. this.usefontStyle.fnode.node.close = (tempClose == "") ? (ifont + " " + this.firstIconArray[this.ficon]["close"]) : tempClose; // 一级图标中的node节点close图标
  650. } else {
  651. var open = node.open;
  652. var close = node.close;
  653. if(typeof open === 'undefined'){
  654. this.usefontStyle.fnode.node.open = (tempOpen == "") ? (ifont + " " + this.firstIconArray[this.ficon]["open"]) : tempOpen; // 一级图标中的node节点open图标
  655. } else {
  656. this.usefontStyle.fnode.node.open = ifont + " " + open;
  657. }
  658. if(typeof close === 'undefined') {
  659. this.usefontStyle.fnode.node.close = (tempClose == "") ? (ifont + " " + this.firstIconArray[this.ficon]["close"]) : tempClose; // 一级图标中的node节点close图标
  660. } else {
  661. this.usefontStyle.fnode.node.close = ifont + " " + close;
  662. }
  663. }
  664. if(typeof dot === 'undefined'){
  665. this.usefontStyle.fnode.dot = (tempDot == "") ? (ifont + " " + LI_DIV_SPREAD_LAST) : tempDot; // 一级图标中的node节点dot图标
  666. } else {
  667. this.usefontStyle.fnode.dot = ifont + " " + dot;
  668. }
  669. }
  670. };
  671. // 赋值二级图标
  672. DTree.prototype.useDefaultOrUserDefineSnodeStyle = function(ifont, snode){
  673. var _this = this;
  674. var tempOpen = this.usefontStyle.snode.node.open;
  675. var tempClose = this.usefontStyle.snode.node.close;
  676. var tempLeaf = this.usefontStyle.snode.leaf;
  677. if(typeof snode === 'undefined'){
  678. this.usefontStyle.snode.node.open = (tempOpen == "") ? (ifont + " " + this.nodeIconArray[this.nodeIcon]["open"]) : tempOpen; // 二级图标中的node节点open图标
  679. this.usefontStyle.snode.node.close = (tempClose == "") ? (ifont + " " + this.nodeIconArray[this.nodeIcon]["close"]) : tempClose; // 二级图标中的node节点close图标
  680. this.usefontStyle.snode.leaf = (tempLeaf == "") ? (ifont + " " + this.leafIconArray[this.leafIcon]) : tempLeaf; // 二级图标中的leaf节点图标
  681. } else {
  682. var node = snode.node;
  683. var leaf = snode.leaf;
  684. if(typeof node === 'undefined') {
  685. this.usefontStyle.snode.node.open = (tempOpen == "") ? (ifont + " " + this.nodeIconArray[this.nodeIcon]["open"]) : tempOpen; // 二级图标中的node节点open图标
  686. this.usefontStyle.snode.node.close = (tempClose == "") ? (ifont + " " + this.nodeIconArray[this.nodeIcon]["close"]) : tempClose; // 二级图标中的node节点close图标
  687. } else {
  688. var open = node.open;
  689. var close = node.close;
  690. if(typeof open === 'undefined'){
  691. this.usefontStyle.snode.node.open = (tempOpen == "") ? (ifont + " " + this.nodeIconArray[this.nodeIcon]["open"]) : tempOpen; // 二级图标中的node节点open图标
  692. } else {
  693. this.usefontStyle.snode.node.open = ifont + " " + open;
  694. }
  695. if(typeof close === 'undefined') {
  696. this.usefontStyle.snode.node.close = (tempClose == "") ? (ifont + " " + this.nodeIconArray[this.nodeIcon]["close"]) : tempClose; // 二级图标中的node节点close图标
  697. } else {
  698. this.usefontStyle.snode.node.close = ifont + " " + close;
  699. }
  700. }
  701. if(typeof leaf === 'undefined') {
  702. this.usefontStyle.snode.leaf = (tempLeaf == "") ? (ifont + " " + this.leafIconArray[this.leafIcon]) : tempLeaf; // 二级图标中的leaf节点图标
  703. } else {
  704. this.usefontStyle.snode.leaf = ifont + " " + leaf;
  705. }
  706. }
  707. };
  708. // 赋值复选框图标
  709. DTree.prototype.useDefaultOrUserDefineCheckboxStyle = function(ifont, checkbox){
  710. var _this = this;
  711. var tempOn = this.usefontStyle.checkbox.on;
  712. var tempOut = this.usefontStyle.checkbox.out;
  713. var tempNoall = this.usefontStyle.checkbox.noall;
  714. if(typeof checkbox === 'undefined'){
  715. this.usefontStyle.checkbox.on = (tempOn == "") ? (ifont + " " + LI_DIV_CHECKBAR_ON) : tempOn;
  716. this.usefontStyle.checkbox.out = (tempOut == "") ? (ifont + " " + LI_DIV_CHECKBAR_OUT) : tempOut;
  717. this.usefontStyle.checkbox.noall = (tempNoall == "") ? (ifont + " " + LI_DIV_CHECKBAR_NOALL) : tempNoall;
  718. } else {
  719. var on = checkbox.on;
  720. var out = checkbox.out;
  721. var noall = checkbox.noall;
  722. if(typeof on === 'undefined') {
  723. this.usefontStyle.checkbox.on = (tempOn == "") ? (ifont + " " + LI_DIV_CHECKBAR_ON) : tempOn;
  724. } else {
  725. this.usefontStyle.checkbox.on = ifont + " " + on;
  726. }
  727. if(typeof out === 'undefined') {
  728. this.usefontStyle.checkbox.out = (tempOut == "") ? (ifont + " " + LI_DIV_CHECKBAR_OUT) : tempOut;
  729. } else {
  730. this.usefontStyle.checkbox.out = ifont + " " + out;
  731. }
  732. if(typeof noall === 'undefined') {
  733. this.usefontStyle.checkbox.noall = (tempNoall == "") ? (ifont + " " + LI_DIV_CHECKBAR_NOALL) : tempNoall;
  734. } else {
  735. this.usefontStyle.checkbox.noall = ifont + " " + noall;
  736. }
  737. }
  738. };
  739. // 赋值菜单栏图标
  740. DTree.prototype.useDefaultOrUserDefineMenubarStyle = function(ifont, menubar){
  741. var _this = this;
  742. var tempMovedown = this.usefontStyle.menubar.movedown;
  743. var tempMoveup = this.usefontStyle.menubar.moveup;
  744. var tempRefresh = this.usefontStyle.menubar.refresh;
  745. var tempCheckAll = this.usefontStyle.menubar.checkAll;
  746. var tempUncheckAll = this.usefontStyle.menubar.unCheckAll;
  747. var tempInvertAll = this.usefontStyle.menubar.invertAll;
  748. var tempRemove = this.usefontStyle.menubar.remove;
  749. var tempSearch = this.usefontStyle.menubar.search;
  750. if(typeof menubar === 'undefined'){
  751. this.usefontStyle.menubar.movedown = (tempMovedown == "") ? (ifont + " " + LI_DIV_MENUBAR_DOWN) : tempMovedown;
  752. this.usefontStyle.menubar.moveup = (tempMoveup == "") ? (ifont + " " + LI_DIV_MENUBAR_UP) : tempMoveup;
  753. this.usefontStyle.menubar.refresh = (tempRefresh == "") ? (ifont + " " + LI_DIV_MENUBAR_REFRESH) : tempRefresh;
  754. this.usefontStyle.menubar.checkAll = (tempCheckAll == "") ? (ifont + " " + LI_DIV_MENUBAR_CHECKALL) : tempCheckAll;
  755. this.usefontStyle.menubar.unCheckAll = (tempUncheckAll == "") ? (ifont + " " + LI_DIV_MENUBAR_UNCHECKALL) : tempUncheckAll;
  756. this.usefontStyle.menubar.invertAll = (tempInvertAll == "") ? (ifont + " " + LI_DIV_MENUBAR_INVERTALL) : tempInvertAll;
  757. this.usefontStyle.menubar.remove = (tempRemove == "") ? (ifont + " " + LI_DIV_MENUBAR_DELETE) : tempRemove;
  758. this.usefontStyle.menubar.search = (tempSearch == "") ? (ifont + " " + LI_DIV_MENUBAR_SEARCH) : tempSearch;
  759. } else {
  760. var movedown = menubar.movedown;
  761. var moveup = menubar.moveup;
  762. var refresh = menubar.refresh;
  763. var checkAll = menubar.checkAll;
  764. var unCheckAll = menubar.unCheckAll;
  765. var invertAll = menubar.invertAll;
  766. var remove = menubar.remove;
  767. var search = menubar.search;
  768. if(typeof movedown === 'undefined') {
  769. this.usefontStyle.menubar.movedown = (tempMovedown == "") ? (ifont + " " + LI_DIV_MENUBAR_DOWN) : tempMovedown;
  770. } else {
  771. this.usefontStyle.menubar.movedown = ifont + " " + movedown;
  772. }
  773. if(typeof moveup === 'undefined') {
  774. this.usefontStyle.menubar.moveup = (tempMoveup == "") ? (ifont + " " + LI_DIV_MENUBAR_UP) : tempMoveup;
  775. } else {
  776. this.usefontStyle.menubar.moveup = ifont + " " + moveup;
  777. }
  778. if(typeof refresh === 'undefined') {
  779. this.usefontStyle.menubar.refresh = (tempRefresh == "") ? (ifont + " " + LI_DIV_MENUBAR_REFRESH) : tempRefresh;
  780. } else {
  781. this.usefontStyle.menubar.refresh = ifont + " " + refresh;
  782. }
  783. if(typeof checkAll === 'undefined') {
  784. this.usefontStyle.menubar.checkAll = (tempCheckAll == "") ? (ifont + " " + LI_DIV_MENUBAR_CHECKALL) : tempCheckAll;
  785. } else {
  786. this.usefontStyle.menubar.checkAll = ifont + " " + checkAll;
  787. }
  788. if(typeof unCheckAll === 'undefined') {
  789. this.usefontStyle.menubar.unCheckAll = (tempUncheckAll == "") ? (ifont + " " + LI_DIV_MENUBAR_UNCHECKALL) : tempUncheckAll;
  790. } else {
  791. this.usefontStyle.menubar.unCheckAll = ifont + " " + unCheckAll;
  792. }
  793. if(typeof invertAll === 'undefined') {
  794. this.usefontStyle.menubar.invertAll = (tempInvertAll == "") ? (ifont + " " + LI_DIV_MENUBAR_INVERTALL) : tempInvertAll;
  795. } else {
  796. this.usefontStyle.menubar.invertAll = ifont + " " + invertAll;
  797. }
  798. if(typeof remove === 'undefined') {
  799. this.usefontStyle.menubar.remove = (tempRemove == "") ? (ifont + " " + LI_DIV_MENUBAR_DELETE) : tempRemove;
  800. } else {
  801. this.usefontStyle.menubar.remove = ifont + " " + remove;
  802. }
  803. if(typeof search === 'undefined') {
  804. this.usefontStyle.menubar.search = (tempSearch == "") ? (ifont + " " + LI_DIV_MENUBAR_SEARCH) : tempSearch;
  805. } else {
  806. this.usefontStyle.menubar.search = ifont + " " + search;
  807. }
  808. }
  809. };
  810. // 赋值扩展菜单栏图标
  811. DTree.prototype.useDefaultOrUserDefineMenubarExtStyle = function(ifont, menubarExt){
  812. var _this = this;
  813. var tempExt = this.usefontStyle.menubarExt;
  814. if(typeof menubarExt === 'undefined'){
  815. this.usefontStyle.menubarExt = (tempExt == "") ? ifont : tempExt;
  816. } else {
  817. this.usefontStyle.menubarExt = menubarExt;
  818. }
  819. };
  820. // 赋值工具栏图标
  821. DTree.prototype.useDefaultOrUserDefineToolbarStyle = function(ifont, toolbar){
  822. var _this = this;
  823. var tempMovedown = this.usefontStyle.toolbar.menubar.movedown;
  824. var tempMoveup = this.usefontStyle.toolbar.menubar.moveup;
  825. var tempRefresh = this.usefontStyle.toolbar.menubar.refresh;
  826. var tempCheckAll = this.usefontStyle.toolbar.menubar.checkAll;
  827. var tempUnCheckAll = this.usefontStyle.toolbar.menubar.unCheckAll;
  828. var tempInvertAll = this.usefontStyle.toolbar.menubar.invertAll;
  829. var tempRemove = this.usefontStyle.toolbar.menubar.remove;
  830. var tempSearch = this.usefontStyle.toolbar.menubar.search;
  831. var tempExt = this.usefontStyle.toolbar.menubarExt;
  832. var tempPulldown = this.usefontStyle.toolbar.pulldown;
  833. var tempPullup = this.usefontStyle.toolbar.pullup;
  834. var tempAdd = this.usefontStyle.toolbar.add;
  835. var tempEdit = this.usefontStyle.toolbar.edit;
  836. var tempDel = this.usefontStyle.toolbar.del;
  837. if(typeof toolbar === 'undefined'){
  838. this.usefontStyle.toolbar.menubar.movedown = (tempMovedown == "") ? (ifont + " " + this.usefontStyle.menubar.movedown) : tempMovedown;
  839. this.usefontStyle.toolbar.menubar.moveup = (tempMoveup == "") ? (ifont + " " + this.usefontStyle.menubar.moveup) : tempMoveup;
  840. this.usefontStyle.toolbar.menubar.refresh = (tempRefresh == "") ? (ifont + " " + this.usefontStyle.menubar.refresh) : tempRefresh;
  841. this.usefontStyle.toolbar.menubar.checkAll = (tempCheckAll == "") ? (ifont + " " + this.usefontStyle.menubar.checkAll) : tempCheckAll;
  842. this.usefontStyle.toolbar.menubar.unCheckAll = (tempUnCheckAll == "") ? (ifont + " " + this.usefontStyle.menubar.unCheckAll) : tempUnCheckAll;
  843. this.usefontStyle.toolbar.menubar.invertAll = (tempInvertAll == "") ? (ifont + " " + this.usefontStyle.menubar.invertAll) : tempInvertAll;
  844. this.usefontStyle.toolbar.menubar.remove = (tempRemove == "") ? (ifont + " " + this.usefontStyle.menubar.remove) : tempRemove;
  845. this.usefontStyle.toolbar.menubar.search = (tempSearch == "") ? (ifont + " " + this.usefontStyle.menubar.search) : tempSearch;
  846. this.usefontStyle.toolbar.menubarExt = (tempExt == "") ? this.usefontStyle.menubarExt : tempExt;
  847. this.usefontStyle.toolbar.pulldown = (tempPulldown == "") ? (ifont + " " + LI_DIV_TOOLBAR_PULLDOWN) : tempPulldown;
  848. this.usefontStyle.toolbar.pullup = (tempPullup == "") ? (ifont + " " + LI_DIV_TOOLBAR_PULLUP) : tempPullup;
  849. this.usefontStyle.toolbar.add = (tempAdd == "") ? (ifont + " " + LI_DIV_TOOLBAR_ADD) : tempAdd;
  850. this.usefontStyle.toolbar.edit = (tempEdit == "") ? (ifont + " " + LI_DIV_TOOLBAR_EDIT) : tempEdit;
  851. this.usefontStyle.toolbar.del = (tempDel == "") ? (ifont + " " + LI_DIV_TOOLBAR_DEL) : tempDel;
  852. } else {
  853. var menubar = toolbar.menubar;
  854. var menubarExt = toolbar.menubarExt;
  855. var pulldown = toolbar.pulldown;
  856. var pullup = toolbar.pullup;
  857. var add = toolbar.add;
  858. var edit = toolbar.edit;
  859. var del = toolbar.del;
  860. if(typeof menubar === 'undefined'){
  861. this.usefontStyle.toolbar.menubar.movedown = (tempMovedown == "") ? (ifont + " " + this.usefontStyle.menubar.movedown) : tempMovedown;
  862. this.usefontStyle.toolbar.menubar.moveup = (tempMoveup == "") ? (ifont + " " + this.usefontStyle.menubar.moveup) : tempMoveup;
  863. this.usefontStyle.toolbar.menubar.refresh = (tempRefresh == "") ? (ifont + " " + this.usefontStyle.menubar.refresh) : tempRefresh;
  864. this.usefontStyle.toolbar.menubar.checkAll = (tempCheckAll == "") ? (ifont + " " + this.usefontStyle.menubar.checkAll) : tempCheckAll;
  865. this.usefontStyle.toolbar.menubar.unCheckAll = (tempUncheckAll == "") ? (ifont + " " + this.usefontStyle.menubar.unCheckAll) : tempUncheckAll;
  866. this.usefontStyle.toolbar.menubar.invertAll = (tempInvertAll == "") ? (ifont + " " + this.usefontStyle.menubar.invertAll) : tempInvertAll;
  867. this.usefontStyle.toolbar.menubar.remove = (tempRemove == "") ? (ifont + " " + this.usefontStyle.menubar.remove) : tempRemove;
  868. this.usefontStyle.toolbar.menubar.search = (tempSearch == "") ? (ifont + " " + this.usefontStyle.menubar.search) : tempSearch;
  869. } else {
  870. var movedown = menubar.movedown;
  871. var moveup = menubar.moveup;
  872. var refresh = menubar.refresh;
  873. var checkAll = menubar.checkAll;
  874. var unCheckAll = menubar.unCheckAll;
  875. var invertAll = menubar.invertAll;
  876. var remove = menubar.remove;
  877. var search = menubar.search;
  878. if(typeof movedown === 'undefined') {
  879. this.usefontStyle.toolbar.menubar.movedown = (tempMovedown == "") ? (ifont + " " + this.usefontStyle.menubar.movedown) : tempMovedown;
  880. } else {
  881. this.usefontStyle.toolbar.menubar.movedown = ifont + " " + movedown;
  882. }
  883. if(typeof moveup === 'undefined') {
  884. this.usefontStyle.toolbar.menubar.moveup = (tempMoveup == "") ? (ifont + " " + this.usefontStyle.menubar.moveup) : tempMoveup;
  885. } else {
  886. this.usefontStyle.toolbar.menubar.moveup = ifont + " " + moveup;
  887. }
  888. if(typeof refresh === 'undefined') {
  889. this.usefontStyle.toolbar.menubar.refresh = (tempRefresh == "") ? (ifont + " " + this.usefontStyle.menubar.refresh) : tempRefresh;
  890. } else {
  891. this.usefontStyle.toolbar.menubar.refresh = ifont + " " + refresh;
  892. }
  893. if(typeof checkAll === 'undefined') {
  894. this.usefontStyle.toolbar.menubar.checkAll = (tempCheckAll == "") ? (ifont + " " + this.usefontStyle.menubar.checkAll) : tempCheckAll;
  895. } else {
  896. this.usefontStyle.toolbar.menubar.checkAll = ifont + " " + checkAll;
  897. }
  898. if(typeof unCheckAll === 'undefined') {
  899. this.usefontStyle.toolbar.menubar.unCheckAll = (tempUncheckAll == "") ? (ifont + " " + this.usefontStyle.menubar.unCheckAll) : tempUncheckAll;
  900. } else {
  901. this.usefontStyle.toolbar.menubar.unCheckAll = ifont + " " + unCheckAll;
  902. }
  903. if(typeof invertAll === 'undefined') {
  904. this.usefontStyle.toolbar.menubar.invertAll = (tempInvertAll == "") ? (ifont + " " + this.usefontStyle.menubar.invertAll) : tempInvertAll;
  905. } else {
  906. this.usefontStyle.toolbar.menubar.invertAll = ifont + " " + invertAll;
  907. }
  908. if(typeof remove === 'undefined') {
  909. this.usefontStyle.toolbar.menubar.remove = (tempRemove == "") ? (ifont + " " + this.usefontStyle.menubar.remove) : tempRemove;
  910. } else {
  911. this.usefontStyle.toolbar.menubar.remove = ifont + " " + remove;
  912. }
  913. if(typeof search === 'undefined') {
  914. this.usefontStyle.toolbar.menubar.search = (tempSearch == "") ? (ifont + " " + this.usefontStyle.menubar.search) : tempSearch;
  915. } else {
  916. this.usefontStyle.toolbar.menubar.search = ifont + " " + search;
  917. }
  918. }
  919. if(typeof menubarExt === 'undefined'){
  920. this.usefontStyle.toolbar.menubarExt = (tempExt == "") ? this.usefontStyle.menubarExt : tempExt;
  921. } else {
  922. this.usefontStyle.toolbar.menubarExt = menubarExt;
  923. }
  924. if(typeof pulldown === 'undefined'){
  925. this.usefontStyle.toolbar.pulldown = (tempPulldown == "") ? (ifont + " " + LI_DIV_TOOLBAR_PULLDOWN) : tempPulldown;
  926. } else {
  927. this.usefontStyle.toolbar.pulldown = ifont + " " + pulldown;
  928. }
  929. if(typeof pullup === 'undefined'){
  930. this.usefontStyle.toolbar.pullup = (tempPullup == "") ? (ifont + " " + LI_DIV_TOOLBAR_PULLUP) : tempPullup;
  931. } else {
  932. this.usefontStyle.toolbar.pullup = ifont + " " + pullup;
  933. }
  934. if(typeof add === 'undefined'){
  935. this.usefontStyle.toolbar.add = (tempAdd == "") ? (ifont + " " + LI_DIV_TOOLBAR_ADD) : tempAdd;
  936. } else {
  937. this.usefontStyle.toolbar.add = ifont + " " + add;
  938. }
  939. if(typeof edit === 'undefined'){
  940. this.usefontStyle.toolbar.edit = (tempEdit == "") ? (ifont + " " + LI_DIV_TOOLBAR_EDIT) : tempEdit;
  941. } else {
  942. this.usefontStyle.toolbar.edit = ifont + " " + edit;
  943. }
  944. if(typeof del === 'undefined'){
  945. this.usefontStyle.toolbar.del = (tempDel == "") ? (ifont + " " + LI_DIV_TOOLBAR_DEL) : tempDel;
  946. } else {
  947. this.usefontStyle.toolbar.del = ifont + " " + del;
  948. }
  949. }
  950. };
  951. // 赋值扩展工具栏图标
  952. DTree.prototype.useDefaultOrUserDefineToolbarExtStyle = function(ifont, toolbarExt){
  953. var _this = this;
  954. var tempExt = this.usefontStyle.toolbarExt;
  955. if(typeof toolbarExt === 'undefined'){
  956. this.usefontStyle.toolbarExt = (tempExt == "") ? ifont : tempExt;
  957. } else {
  958. this.usefontStyle.toolbarExt = toolbarExt;
  959. }
  960. };
  961. // 设置图标的展开关闭,以及展开时/关闭时是最后一级图标的处理
  962. DTree.prototype.operateIcon = function($i_spread, $i_node){
  963. var _this = this;
  964. var iconClass = $i_node.data("iconClass");
  965. return{
  966. open: function(){
  967. $i_spread.data("spread","open");
  968. $i_node.data("spread","open");
  969. $i_spread.removeClass(_this.usefontStyle.fnode.node.close);
  970. $i_spread.addClass(_this.usefontStyle.fnode.node.open);
  971. if(!iconClass) {
  972. $i_node.removeClass(_this.usefontStyle.snode.node.close);
  973. $i_node.addClass(_this.usefontStyle.snode.node.open);
  974. }
  975. },
  976. close: function(){
  977. $i_spread.data("spread","close");
  978. $i_node.data("spread","close");
  979. $i_spread.removeClass(_this.usefontStyle.fnode.node.open);
  980. $i_spread.addClass(_this.usefontStyle.fnode.node.close);
  981. if(!iconClass) {
  982. $i_node.removeClass(_this.usefontStyle.snode.node.open);
  983. $i_node.addClass(_this.usefontStyle.snode.node.close);
  984. }
  985. },
  986. openWithDot: function(){
  987. $i_spread.data("spread","open");
  988. $i_node.data("spread","open");
  989. $i_spread.removeClass(ICON_HIDE);
  990. $i_spread.removeClass(_this.usefontStyle.fnode.dot);
  991. $i_spread.addClass(_this.usefontStyle.fnode.node.open);
  992. if(!iconClass) {
  993. $i_node.removeClass(_this.usefontStyle.snode.leaf);
  994. $i_node.addClass(_this.usefontStyle.snode.node.open);
  995. }
  996. },
  997. closeWithDot: function(){
  998. $i_spread.data("spread","last");
  999. $i_node.data("spread","last");
  1000. $i_spread.removeClass(_this.usefontStyle.fnode.node.open);
  1001. $i_spread.removeClass(_this.usefontStyle.fnode.node.close);
  1002. if(!_this.dot){$i_spread.addClass(ICON_HIDE);}
  1003. $i_spread.addClass(_this.usefontStyle.fnode.dot);
  1004. if(!iconClass) {
  1005. $i_node.removeClass(_this.usefontStyle.snode.node.open);
  1006. $i_node.removeClass(_this.usefontStyle.snode.node.close);
  1007. $i_node.addClass(_this.usefontStyle.snode.leaf);
  1008. }
  1009. }
  1010. }
  1011. };
  1012. /******************** 初始化数据区域 ********************/
  1013. // 重载树
  1014. DTree.prototype.reload = function(options){
  1015. var _this = this;
  1016. _this.reloadSetting(options);
  1017. _this.init();
  1018. };
  1019. // 初始化树
  1020. DTree.prototype.init = function(){
  1021. var _this = this;
  1022. if (typeof _this !== "object") {
  1023. layer.msg("树组件未成功加载,请检查配置", {icon:5});
  1024. return ;
  1025. }
  1026. if(_this.data) {
  1027. if(typeof _this.data.length === 'undefined'){
  1028. layer.msg("数据解析异常,data数据格式不正确", {icon:5});
  1029. return ;
  1030. }
  1031. if(_this.data.length == 0) {
  1032. _this.obj.html(_this.getNoneDom().text());
  1033. return ;
  1034. }
  1035. //先将ul中的元素清空
  1036. _this.obj.html("");
  1037. setTimeout(function () {
  1038. // 加载完毕后执行树解析前的回调
  1039. _this.success(_this.data, _this.obj);
  1040. // 第一次解析树
  1041. if (_this.dataFormat == 'list'){
  1042. //1.识别根节点ul中的data-id标签,判断顶级父节点
  1043. var pid = _this.obj.attr("data-id");
  1044. //2.构建一个存放节点的树组
  1045. var rootListData = _this.queryListTreeByPid(pid, _this.data);
  1046. _this.loadListTree(rootListData, _this.data, 1);
  1047. } else {
  1048. _this.loadTree(_this.data, 1);
  1049. }
  1050. // 这种情况下需要一开始就将toolbar显示在页面上
  1051. if(_this.toolbar && _this.toolbarWay != 'contextmenu') {
  1052. _this.setToolbarDom().setToolbarPlace(_this.toolbarMenu);
  1053. }
  1054. // 判断是否存在错误数据,并是否打印错误数据
  1055. _this.msgErrData();
  1056. // 加载完毕后的回调
  1057. _this.done(_this.data, _this.obj);
  1058. }, 100);
  1059. } else {
  1060. if (!_this.url) {
  1061. layer.msg("数据请求异常,url参数未指定", {icon:5});
  1062. return ;
  1063. }
  1064. //先将ul中的元素清空
  1065. _this.obj.html("");
  1066. var index = _this.load ? layer.load(1) : "";
  1067. AjaxHelper.request({
  1068. async: _this.async,
  1069. headers: _this.headers,
  1070. type: _this.method,
  1071. url: _this.url,
  1072. dataType: _this.dataType,
  1073. contentType: _this.contentType,
  1074. data: _this.getFilterRequestParam(_this.getRequestParam()),
  1075. success: function(result) {
  1076. if (typeof result === 'string') {
  1077. result = $.parseJSON(result);
  1078. }
  1079. var code = "";
  1080. if (_this.dataStyle == 'layuiStyle'){
  1081. code = result[_this.response.statusName];
  1082. } else {
  1083. code = result.status[_this.response.statusName];
  1084. }
  1085. if (code == _this.response.statusCode) {
  1086. var d = result[_this.response.rootName];
  1087. if(typeof d.length === 'undefined'){
  1088. layer.msg("数据解析异常,url回调后的数据格式不正确", {icon:5});
  1089. return ;
  1090. }
  1091. if(d.length == 0) {
  1092. _this.obj.html(_this.getNoneDom().text());
  1093. return ;
  1094. }
  1095. // 加载完毕后执行树解析前的回调
  1096. _this.success(result, _this.obj);
  1097. // 第一次解析树
  1098. if (_this.dataFormat == 'list'){
  1099. //1.识别根节点ul中的data-id标签,判断顶级父节点
  1100. var pid = _this.obj.attr("data-id");
  1101. //2.构建一个存放节点的树组
  1102. var rootListData = _this.queryListTreeByPid(pid, d);
  1103. _this.loadListTree(rootListData, d, 1);
  1104. } else {
  1105. _this.loadTree(d, 1);
  1106. }
  1107. // 这种情况下需要一开始就将toolbar显示在页面上
  1108. if(_this.toolbar && _this.toolbarWay != 'contextmenu') {
  1109. _this.setToolbarDom().setToolbarPlace(_this.toolbarMenu);
  1110. }
  1111. // 判断是否存在错误数据,并是否打印错误数据
  1112. _this.msgErrData();
  1113. // 加载完毕后的回调
  1114. _this.done(result, _this.obj);
  1115. } else {
  1116. if (_this.dataStyle == 'layuiStyle'){
  1117. layer.msg(result[_this.response.message], {icon:2});
  1118. } else {
  1119. layer.msg(result.status[_this.response.message], {icon:2});
  1120. }
  1121. }
  1122. },
  1123. error: function(XMLHttpRequest, textStatus, errorThrown){// 异步加载异常回调
  1124. _this.error();
  1125. },
  1126. complete: function(XMLHttpRequest, textStatus){// 异步加载完成回调
  1127. if(_this.load){layer.close(index);}
  1128. _this.complete();
  1129. }
  1130. });
  1131. }
  1132. };
  1133. // 加载子节点
  1134. DTree.prototype.getChild = function($div, data) {
  1135. var _this = this, $ul = $div.next("ul");
  1136. _this.setNodeParam($div);
  1137. if(typeof data !== 'undefined') {
  1138. if(typeof data.length === 'undefined'){
  1139. layer.msg("数据解析异常,data数据格式不正确", {icon:5});
  1140. return ;
  1141. }
  1142. //先将ul中的元素清空
  1143. $ul.html("");
  1144. // 解析树
  1145. if (_this.dataFormat == 'list'){
  1146. var pid = _this.node.nodeId;
  1147. var level = parseInt(_this.node.level)+1;
  1148. var listData = _this.queryListTreeByPid(pid, data);
  1149. _this.loadListTree(listData, _this.data, level);
  1150. } else {
  1151. _this.loadTree(data, level);
  1152. }
  1153. // 这种情况下需要一开始就将toolbar显示在页面上
  1154. if(_this.toolbar && _this.toolbarWay != 'contextmenu') {
  1155. _this.setToolbarDom().setToolbarPlace(_this.toolbarMenu);
  1156. }
  1157. // 判断是否存在错误数据,并是否打印错误数据
  1158. _this.msgErrData();
  1159. } else {
  1160. if (!_this.url) {
  1161. layer.msg("数据请求异常,url参数未指定", {icon:5});
  1162. return ;
  1163. }
  1164. $ul.html("");
  1165. var index = _this.load ? layer.load(1) : "";
  1166. AjaxHelper.request({
  1167. async: _this.async,
  1168. headers: _this.headers,
  1169. type: _this.method,
  1170. url: _this.url,
  1171. dataType: _this.dataType,
  1172. data: _this.getFilterRequestParam(_this.getRequestParam()),
  1173. success: function(result) {
  1174. if (typeof result === 'string') {
  1175. result = $.parseJSON(result);
  1176. }
  1177. var code = "";
  1178. if (_this.dataStyle == 'layuiStyle'){
  1179. code = result[_this.response.statusName];
  1180. } else {
  1181. code = result.status[_this.response.statusName];
  1182. }
  1183. if (code == _this.response.statusCode) {
  1184. // 解析树
  1185. var pid = _this.node.nodeId;
  1186. var level = parseInt(_this.node.level)+1;
  1187. if (_this.dataFormat == 'list'){
  1188. var pListData = _this.queryListTreeByPid(pid, result[_this.response.rootName]);
  1189. _this.loadListTree(pListData, result[_this.response.rootName], level, $ul);
  1190. } else {
  1191. _this.loadTree(result[_this.response.rootName], level, $ul);
  1192. }
  1193. // 这种情况下需要一开始就将toolbar显示在页面上
  1194. if(_this.toolbar && _this.toolbarWay != 'contextmenu') {
  1195. _this.setToolbarDom().setToolbarPlace(_this.toolbarMenu);
  1196. }
  1197. // 判断是否存在错误数据,并是否打印错误数据
  1198. _this.msgErrData();
  1199. $ul.addClass(NAV_SHOW);
  1200. } else {
  1201. if (_this.dataStyle == 'layuiStyle'){
  1202. layer.msg(result[_this.response.message], {icon:2});
  1203. } else {
  1204. layer.msg(result.status[_this.response.message], {icon:2});
  1205. }
  1206. }
  1207. },
  1208. error: function(XMLHttpRequest, textStatus, errorThrown){// 异步加载异常回调
  1209. _this.error();
  1210. },
  1211. complete: function(XMLHttpRequest, textStatus){// 异步加载完成回调
  1212. if(_this.load){layer.close(index);}
  1213. _this.complete();
  1214. }
  1215. });
  1216. }
  1217. };
  1218. // 初始化树或者拼接树
  1219. DTree.prototype.loadListTree = function(pListData, listData, level, $ul){
  1220. var _this = this;
  1221. $ul = $ul || _this.getNodeDom().nowOrRootUl(); //当前选中的节点或根节点
  1222. if (pListData.length > 0){
  1223. for (var i = 0; i < pListData.length; i++) {
  1224. // 1.获取已知节点的全部数据
  1225. var data = pListData[i];
  1226. if(typeof data !== "object") continue;
  1227. var parseData = _this.parseData(data);
  1228. var childListData = _this.queryListTreeByPid(parseData.treeId(), listData); // 根据已知数据的id判断该条数据是否还有子数据
  1229. // 3. 页面元素加载数据
  1230. $ul.append(_this.getLiItemDom(parseData.treeId(), parseData.parentId(), parseData.title(), parseData.fmtTitle(), parseData.last(childListData.length), parseData.iconClass(), parseData.checkArr(), level, parseData.spread(level), parseData.disabled(), parseData.hide(), parseData.basicData(), parseData.recordData(), ($ul.hasClass(UL_ROOT) ? "root" : "item")));
  1231. // 4.有子数据的元素加载子节点
  1232. if(childListData.length > 0){
  1233. var cLevel = parseInt(level)+1;
  1234. _this.loadListTree(childListData, listData, cLevel, _this.obj.find("ul[data-id='"+parseData.treeId()+"']"));
  1235. }
  1236. }
  1237. }
  1238. };
  1239. // 根据父ID查找list数据中匹配的元素
  1240. DTree.prototype.queryListTreeByPid = function(pid, listData){
  1241. var _this = this;
  1242. var rootListData = [];
  1243. if (listData) {
  1244. for (var i = 0; i < listData.length; i++) {
  1245. var data = listData[i];
  1246. if(typeof data !== "object") continue;
  1247. if(pid == "null" || pid == null){
  1248. if(data[_this.response.parentId] == null) { rootListData.push(data); }
  1249. } else {
  1250. if (data[_this.response.parentId] == pid){
  1251. if (data[_this.response.treeId] == pid){
  1252. _this.errData.push(data);
  1253. } else {
  1254. rootListData.push(data);
  1255. }
  1256. }
  1257. }
  1258. }
  1259. }
  1260. return rootListData;
  1261. };
  1262. // 初始化树或者拼接树
  1263. DTree.prototype.loadTree = function(root, level, $ul){
  1264. var _this = this;
  1265. if (root) {
  1266. $ul = $ul || _this.getNodeDom().nowOrRootUl(); //当前选中的节点或根节点
  1267. for (var i = 0; i < root.length; i++) { // 遍历跟节点或追加的跟节点
  1268. var data = root[i];
  1269. if(typeof data !== "object") continue;
  1270. if(data[_this.response.treeId] == data[_this.response.parentId]) { _this.errData.push(data); }
  1271. var parseData = _this.parseData(data);
  1272. var children = parseData.children();
  1273. $ul.append(_this.getLiItemDom(parseData.treeId(), parseData.parentId(), parseData.title(), parseData.fmtTitle(), parseData.last(children.length), parseData.iconClass(), parseData.checkArr(), level, parseData.spread(level), parseData.disabled(), parseData.hide(), parseData.basicData(), parseData.recordData(), ($ul.hasClass(UL_ROOT) ? "root" : "item")));
  1274. if (children.length != 0) {
  1275. var cLevel = parseInt(level)+1;
  1276. _this.loadTree(children, cLevel, _this.obj.find("ul[data-id='"+parseData.treeId()+"']"));
  1277. }
  1278. }
  1279. }
  1280. };
  1281. // 判断在数据加载时是否存在错误数据,并是否打印错误数据
  1282. DTree.prototype.msgErrData = function() {
  1283. var _this = this;
  1284. if(_this.errData.length > 0 && _this.errDataShow) {
  1285. var title = "";
  1286. for(var i=0; i<_this.errData.length; i++) {
  1287. var edata = _this.errData[i];
  1288. title += "数据:【"+edata[_this.response.title]+"】中节点id和上级id值一致! \n";
  1289. }
  1290. layer.msg(title, {icon:2,time:5000});
  1291. }
  1292. // 显示之后,将错误数据制空
  1293. _this.errData = [];
  1294. };
  1295. // 解析data数据
  1296. DTree.prototype.parseData = function(data) {
  1297. var _this = this;
  1298. return {
  1299. treeId: function(){
  1300. return data[_this.response.treeId];
  1301. },
  1302. parentId: function(){
  1303. return data[_this.response.parentId];
  1304. },
  1305. fmtTitle: function(){
  1306. if(typeof _this.formatter.title === 'function'){
  1307. var ftitle = _this.formatter.title(data);
  1308. var tt = data[_this.response.title];
  1309. tt = (ftitle == "" || ftitle == undefined || ftitle == null) ? tt : ftitle;
  1310. return tt || "";
  1311. }
  1312. return data[_this.response.title];
  1313. },
  1314. title: function(){
  1315. return data[_this.response.title];
  1316. },
  1317. level: function(){
  1318. return data[_this.response.level] || "";
  1319. },
  1320. iconClass: function(){
  1321. return data[_this.response.iconClass] || "";
  1322. },
  1323. last: function(len){
  1324. return ((len == 0) ?
  1325. ((typeof (data[_this.response.last]) === "boolean") ? data[_this.response.last] : true) :
  1326. ((typeof (data[_this.response.last]) === "boolean") ? data[_this.response.last] : false));
  1327. },
  1328. spread: function(level){
  1329. return ((level < _this.initLevel) ?
  1330. ((typeof (data[_this.response.spread]) === "boolean") ? data[_this.response.spread] : true) :
  1331. ((typeof (data[_this.response.spread]) === "boolean") ? data[_this.response.spread] : false));
  1332. },
  1333. disabled: function(){
  1334. return (typeof (data[_this.response.disabled]) === "boolean") ? data[_this.response.disabled] : false;
  1335. },
  1336. hide: function(){
  1337. return (typeof (data[_this.response.hide]) === "boolean") ? data[_this.response.hide] : false;
  1338. },
  1339. checkArr: function(){
  1340. var checkArr = [];
  1341. var checkArrData = data[_this.response.checkArr];
  1342. if(typeof checkArrData === 'string'){
  1343. if(checkArrData.indexOf("{") > -1 && checkArrData.indexOf("}") > -1){
  1344. checkArrData = JSON.parse(checkArrData);
  1345. } else {
  1346. checkArrData = {"type":"0","checked":checkArrData};
  1347. }
  1348. }
  1349. if(typeof checkArrData === 'object'){
  1350. if(typeof checkArrData.length === 'undefined'){
  1351. checkArr.push(checkArrData);
  1352. } else {
  1353. checkArr = checkArrData;
  1354. }
  1355. }
  1356. if(checkArr.length > 0 && checkArr.length > _this.checkArrLen){
  1357. _this.checkArrLen = checkArr.length; // 获取复选框个数
  1358. }
  1359. return checkArr;
  1360. },
  1361. children: function(){
  1362. return data[_this.response.childName] || [];
  1363. },
  1364. basicData: function(){
  1365. return event.escape(JSON.stringify(data[_this.response.basicData])) || JSON.stringify({});
  1366. },
  1367. recordData: function(){
  1368. //var recordData = _this.record ? event.cloneObj(data, [_this.response.basicData, _this.response.childName]) : {};
  1369. var recordData = _this.record ? event.cloneObj(data, [_this.response.treeId,
  1370. _this.response.parentId,
  1371. _this.response.title,
  1372. _this.response.iconClass,
  1373. _this.response.childName,
  1374. _this.response.last,
  1375. _this.response.spread,
  1376. _this.response.disabled,
  1377. _this.response.hide,
  1378. _this.response.checkArr,
  1379. _this.response.checked,
  1380. _this.response.type,
  1381. _this.response.basicData]) : {};
  1382. return event.escape(JSON.stringify(recordData));
  1383. },
  1384. data: function(){
  1385. return data;
  1386. }
  1387. }
  1388. };
  1389. //当无节点数据时显示dom
  1390. DTree.prototype.getNoneDom = function(){
  1391. var _this = this,
  1392. rootId = _this.obj[0].id,
  1393. noneTitle = _this.none;
  1394. return {
  1395. text: function(){
  1396. return "<div class='"+NONETITLE+"' dtree-id='"+rootId+"'>"+noneTitle+"</div>";
  1397. }
  1398. }
  1399. };
  1400. //新增节点的dom值
  1401. DTree.prototype.getDom = function(treeId, parentId, title, fmtTitle, last, iconClass, checkArr, level, spread, disabled, hide) {
  1402. var _this = this,
  1403. rootId = _this.obj[0].id,
  1404. toolbar = _this.toolbar,
  1405. checkbar = _this.checkbar;
  1406. return {
  1407. fnode: function() { // + - 图标
  1408. // 获取图标的变量
  1409. var ficon = _this.ficon,
  1410. dot = _this.dot;
  1411. var fleafIconLast = _this.usefontStyle.fnode.dot,
  1412. fnodeIconOpen = _this.usefontStyle.fnode.node.open,
  1413. fnodeIconClose = _this.usefontStyle.fnode.node.close;
  1414. if(ficon != "-1" && dot){ // 都加载
  1415. return last ? "<i class='"+fleafIconLast+" "+_this.style.dfont+" "+_this.style.ficon+"' data-spread='last' data-id='"+treeId+"' dtree-id='"+rootId+"'></i>" :
  1416. (spread ? "<i class='"+fnodeIconOpen+" "+_this.style.dfont+" "+_this.style.ficon+"' data-spread='open' data-id='"+treeId+"' dtree-id='"+rootId+"'></i>" : "<i class='"+fnodeIconClose+" "+_this.style.dfont+" "+_this.style.ficon+"' data-spread='close' data-id='"+treeId+"' dtree-id='"+rootId+"'></i>");
  1417. }
  1418. if(ficon != "-1" && !dot){ // 加载node 隐藏leaf
  1419. return last ? "<i class='"+fleafIconLast+" "+ICON_HIDE+" "+_this.style.dfont+" "+_this.style.ficon+"' data-spread='last' data-id='"+treeId+"' dtree-id='"+rootId+"'></i>" :
  1420. (spread ? "<i class='"+fnodeIconOpen+" "+_this.style.dfont+" "+_this.style.ficon+"' data-spread='open' data-id='"+treeId+"' dtree-id='"+rootId+"'></i>" : "<i class='"+fnodeIconClose+" "+_this.style.dfont+" "+_this.style.ficon+"' data-spread='close' data-id='"+treeId+"' dtree-id='"+rootId+"'></i>");
  1421. }
  1422. if(ficon == "-1" && dot){ // 隐藏node 加载leaf
  1423. return last ? "<i class='"+fleafIconLast+" "+_this.style.dfont+" "+_this.style.ficon+"' data-spread='last' data-id='"+treeId+"' dtree-id='"+rootId+"'></i>" :
  1424. (spread ? "<i class='"+fnodeIconOpen+" "+_this.style.dfont+" "+_this.style.ficon+"' data-spread='open' data-id='"+treeId+"' dtree-id='"+rootId+"'></i>" : "<i class='"+fnodeIconClose+" "+_this.style.dfont+" "+_this.style.ficon+"' data-spread='close' data-id='"+treeId+"' dtree-id='"+rootId+"'></i>");
  1425. }
  1426. if(ficon == "-1" && !dot){ // 都隐藏
  1427. return last ? "<i class='"+fleafIconLast+" "+ICON_HIDE+" "+_this.style.dfont+" "+_this.style.ficon+"' data-spread='last' data-id='"+treeId+"' dtree-id='"+rootId+"' style='display:none;'></i>" :
  1428. (spread ? "<i class='"+fnodeIconOpen+" "+_this.style.dfont+" "+_this.style.ficon+"' data-spread='open' data-id='"+treeId+"' dtree-id='"+rootId+"'></i>" : "<i class='"+fnodeIconClose+" "+_this.style.dfont+" "+_this.style.ficon+"' data-spread='close' data-id='"+treeId+"' dtree-id='"+rootId+"'></i>");
  1429. }
  1430. },
  1431. node: function() { // 二级图标样式
  1432. // 获取图标的变量
  1433. var nodeIcon = _this.nodeIcon,
  1434. leafIcon = _this.leafIcon;
  1435. var sleafIconLast = _this.usefontStyle.snode.leaf,
  1436. snodeIconOpen = _this.usefontStyle.snode.node.open,
  1437. snodeIconClose = _this.usefontStyle.snode.node.close;
  1438. if(iconClass){
  1439. var iconfont = _this.iconfont;
  1440. if(typeof iconfont === 'string') {
  1441. sleafIconLast = iconfont + " " + iconClass;
  1442. snodeIconOpen = iconfont + " " + iconClass;
  1443. snodeIconClose = iconfont + " " + iconClass;
  1444. } else {
  1445. sleafIconLast = iconfont[0] + " " + iconClass;
  1446. snodeIconOpen = iconfont[0] + " " + iconClass;
  1447. snodeIconClose = iconfont[0] + " " + iconClass;
  1448. }
  1449. }
  1450. if(nodeIcon != "-1" && leafIcon != "-1"){ // 都加载
  1451. return last ? "<i class='"+sleafIconLast+" "+DTREEFONTSPECIAL+" "+_this.style.dfont+" "+_this.style.icon+"' data-spread='last' data-id='"+treeId+"' dtree-id='"+rootId+"' data-iconClass='"+iconClass+"'></i>" :
  1452. (spread ? "<i class='"+snodeIconOpen+" "+DTREEFONTSPECIAL+" "+_this.style.dfont+" "+_this.style.icon+"' data-spread='open' data-id='"+treeId+"' dtree-id='"+rootId+"' data-iconClass='"+iconClass+"'></i>" : "<i class='"+snodeIconClose+" "+DTREEFONTSPECIAL+" "+_this.style.dfont+" "+_this.style.icon+"' data-spread='close' data-id='"+treeId+"' dtree-id='"+rootId+"' data-iconClass='"+iconClass+"'></i>");
  1453. }
  1454. if(nodeIcon != "-1" && leafIcon == "-1"){ // 加载node 隐藏leaf
  1455. return last ? "<i class='"+sleafIconLast+" "+DTREEFONTSPECIAL+" "+_this.style.dfont+" "+_this.style.icon+"' data-spread='last' data-id='"+treeId+"' dtree-id='"+rootId+"' data-iconClass='"+iconClass+"'></i>" :
  1456. (spread ? "<i class='"+snodeIconOpen+" "+DTREEFONTSPECIAL+" "+_this.style.dfont+" "+_this.style.icon+"' data-spread='open' data-id='"+treeId+"' dtree-id='"+rootId+"' data-iconClass='"+iconClass+"'></i>" : "<i class='"+snodeIconClose+" "+DTREEFONTSPECIAL+" "+_this.style.dfont+" "+_this.style.icon+"' data-spread='close' data-id='"+treeId+"' dtree-id='"+rootId+"' data-iconClass='"+iconClass+"'></i>");
  1457. }
  1458. if(nodeIcon == "-1" && leafIcon != "-1"){ // 隐藏node 加载leaf
  1459. return last ? "<i class='"+sleafIconLast+" "+DTREEFONTSPECIAL+" "+_this.style.dfont+" "+_this.style.icon+"' data-spread='last' data-id='"+treeId+"' dtree-id='"+rootId+"' data-iconClass='"+iconClass+"'></i>" :
  1460. (spread ? "<i class='"+snodeIconOpen+" "+DTREEFONTSPECIAL+" "+_this.style.dfont+" "+_this.style.icon+"' data-spread='open' data-id='"+treeId+"' dtree-id='"+rootId+"' data-iconClass='"+iconClass+"'></i>" : "<i class='"+snodeIconClose+" "+DTREEFONTSPECIAL+" "+_this.style.dfont+" "+_this.style.icon+"' data-spread='close' data-id='"+treeId+"' dtree-id='"+rootId+"' data-iconClass='"+iconClass+"'></i>");
  1461. }
  1462. if(nodeIcon == "-1" && leafIcon == "-1"){ // 都隐藏
  1463. return last ? "<i class='"+sleafIconLast+" "+DTREEFONTSPECIAL+" "+_this.style.dfont+" "+_this.style.icon+"' data-spread='last' data-id='"+treeId+"' dtree-id='"+rootId+"' data-iconClass='"+iconClass+"'></i>" :
  1464. (spread ? "<i class='"+snodeIconOpen+" "+DTREEFONTSPECIAL+" "+_this.style.dfont+" "+_this.style.icon+"' data-spread='open' data-id='"+treeId+"' dtree-id='"+rootId+"' data-iconClass='"+iconClass+"'></i>" : "<i class='"+snodeIconClose+" "+DTREEFONTSPECIAL+" "+_this.style.dfont+" "+_this.style.icon+"' data-spread='close' data-id='"+treeId+"' dtree-id='"+rootId+"' data-iconClass='"+iconClass+"'></i>");
  1465. }
  1466. },
  1467. checkbox: function() { // 复选框
  1468. var flag = false;
  1469. if(_this.checkbarLoad == "node"){if (checkbar) {flag = true;}} else {if (last) {if (checkbar) {flag = true;}}}
  1470. if(flag){
  1471. var result = "<div class='"+LI_DIV_CHECKBAR+"' data-id='"+treeId+"' dtree-id='"+rootId+"'>";
  1472. if(checkArr && checkArr.length > 0){
  1473. for (var i = 0; i < checkArr.length; i++) {
  1474. var checkData = checkArr[i];
  1475. var checked = checkData.checked;
  1476. var CHOOSE_CLASS = _this.usefontStyle.checkbox.out;
  1477. if (checked == "2") { //半选择
  1478. CHOOSE_CLASS = _this.usefontStyle.checkbox.noall + " " + _this.style.chs;
  1479. } else if (checked == "1") { //选择
  1480. CHOOSE_CLASS = _this.usefontStyle.checkbox.on + " " + _this.style.chs;
  1481. } else { //未选择或者无值
  1482. CHOOSE_CLASS = _this.usefontStyle.checkbox.out;
  1483. }
  1484. var disClass = "";
  1485. if(disabled){disClass = NAV_DIS;}
  1486. result += "<i class='"+CHOOSE_CLASS+" "+_this.style.dfont+" "+_this.style.cbox+" "+disClass+"' data-id='"+treeId+"' dtree-id='"+rootId+"' data-checked='"+checkData.checked+"' data-initchecked='"+checkData.checked+"' data-type='"+checkData.type+"' dtree-click='"+eventName.checkNodeClick+"' data-par='."+LI_CLICK_CHECKBAR+"' dtree-disabled='"+disabled+"'></i>";
  1487. }
  1488. }
  1489. result += "</div>";
  1490. return result;
  1491. }
  1492. return "";
  1493. },
  1494. text: function() { // 文字显示
  1495. var disClass = "";
  1496. if(disabled){disClass = NAV_DIS;}
  1497. return "<cite class='"+LI_DIV_TEXT_CLASS+" "+disClass+"' data-id='"+treeId+"' data-leaf='"+(last ? "leaf" : "node")+"' dtree-disabled='"+disabled+"' data-title='"+title+"' >"+fmtTitle+"</cite>";
  1498. },
  1499. ul: function() { //子节点ul
  1500. return last ? "<ul class='"+LI_NAV_CHILD+"' data-id='"+treeId+"' dtree-id='"+rootId+"'></ul>" :
  1501. (spread ? "<ul class='"+LI_NAV_CHILD+" "+NAV_SHOW+"' data-id='"+treeId+"' dtree-id='"+rootId+"'></ul>" : "<ul class='"+LI_NAV_CHILD+"' data-id='"+treeId+"' dtree-id='"+rootId+"'></ul>");
  1502. }
  1503. };
  1504. };
  1505. //替换节点的dom值,或指定值
  1506. DTree.prototype.replaceDom = function($div, treeId, last, spread, disabled, hide) {
  1507. var _this = this,
  1508. rootId = _this.obj[0].id,
  1509. toolbar = _this.toolbar,
  1510. checkbar = _this.checkbar;
  1511. return {
  1512. fnode: function() { // + - 图标
  1513. _this.getNodeDom($div).fnode().attr("data-id", treeId);
  1514. },
  1515. node: function(iconClass) { // 二级图标样式
  1516. var snode = "";
  1517. // 获取图标的变量
  1518. var nodeIcon = _this.nodeIcon,
  1519. leafIcon = _this.leafIcon;
  1520. var sleafIconLast = _this.usefontStyle.snode.leaf,
  1521. snodeIconOpen = _this.usefontStyle.snode.node.open,
  1522. snodeIconClose = _this.usefontStyle.snode.node.close;
  1523. if(iconClass){
  1524. var iconfont = _this.iconfont;
  1525. if(typeof iconfont === 'string') {
  1526. sleafIconLast = iconfont + " " + iconClass;
  1527. snodeIconOpen = iconfont + " " + iconClass;
  1528. snodeIconClose = iconfont + " " + iconClass;
  1529. } else {
  1530. sleafIconLast = iconfont[0] + " " + iconClass;
  1531. snodeIconOpen = iconfont[0] + " " + iconClass;
  1532. snodeIconClose = iconfont[0] + " " + iconClass;
  1533. }
  1534. }
  1535. if(nodeIcon != "-1" && leafIcon != "-1"){ // 都加载
  1536. snode = last ? "<i class='"+sleafIconLast+" "+DTREEFONTSPECIAL+" "+_this.style.dfont+" "+_this.style.icon+"' data-spread='last' data-id='"+treeId+"' dtree-id='"+rootId+"' data-iconClass='"+iconClass+"'></i>" :
  1537. (spread ? "<i class='"+snodeIconOpen+" "+DTREEFONTSPECIAL+" "+_this.style.dfont+" "+_this.style.icon+"' data-spread='open' data-id='"+treeId+"' dtree-id='"+rootId+"' data-iconClass='"+iconClass+"'></i>" : "<i class='"+snodeIconClose+" "+DTREEFONTSPECIAL+" "+_this.style.dfont+" "+_this.style.icon+"' data-spread='close' data-id='"+treeId+"' dtree-id='"+rootId+"' data-iconClass='"+iconClass+"'></i>");
  1538. }else if(nodeIcon != "-1" && leafIcon == "-1"){ // 加载node 隐藏leaf
  1539. snode = last ? "<i class='"+sleafIconLast+" "+DTREEFONTSPECIAL+" "+_this.style.dfont+" "+_this.style.icon+"' data-spread='last' data-id='"+treeId+"' dtree-id='"+rootId+"' data-iconClass='"+iconClass+"'></i>" :
  1540. (spread ? "<i class='"+snodeIconOpen+" "+DTREEFONTSPECIAL+" "+_this.style.dfont+" "+_this.style.icon+"' data-spread='open' data-id='"+treeId+"' dtree-id='"+rootId+"' data-iconClass='"+iconClass+"'></i>" : "<i class='"+snodeIconClose+" "+DTREEFONTSPECIAL+" "+_this.style.dfont+" "+_this.style.icon+"' data-spread='close' data-id='"+treeId+"' dtree-id='"+rootId+"' data-iconClass='"+iconClass+"'></i>");
  1541. }else if(nodeIcon == "-1" && leafIcon != "-1"){ // 隐藏node 加载leaf
  1542. snode = last ? "<i class='"+sleafIconLast+" "+DTREEFONTSPECIAL+" "+_this.style.dfont+" "+_this.style.icon+"' data-spread='last' data-id='"+treeId+"' dtree-id='"+rootId+"' data-iconClass='"+iconClass+"'></i>" :
  1543. (spread ? "<i class='"+snodeIconOpen+" "+DTREEFONTSPECIAL+" "+_this.style.dfont+" "+_this.style.icon+"' data-spread='open' data-id='"+treeId+"' dtree-id='"+rootId+"' data-iconClass='"+iconClass+"'></i>" : "<i class='"+snodeIconClose+" "+DTREEFONTSPECIAL+" "+_this.style.dfont+" "+_this.style.icon+"' data-spread='close' data-id='"+treeId+"' dtree-id='"+rootId+"' data-iconClass='"+iconClass+"'></i>");
  1544. }else if(nodeIcon == "-1" && leafIcon == "-1"){ // 都隐藏
  1545. snode = last ? "<i class='"+sleafIconLast+" "+DTREEFONTSPECIAL+" "+_this.style.dfont+" "+_this.style.icon+"' data-spread='last' data-id='"+treeId+"' dtree-id='"+rootId+"' data-iconClass='"+iconClass+"'></i>" :
  1546. (spread ? "<i class='"+snodeIconOpen+" "+DTREEFONTSPECIAL+" "+_this.style.dfont+" "+_this.style.icon+"' data-spread='open' data-id='"+treeId+"' dtree-id='"+rootId+"' data-iconClass='"+iconClass+"'></i>" : "<i class='"+snodeIconClose+" "+DTREEFONTSPECIAL+" "+_this.style.dfont+" "+_this.style.icon+"' data-spread='close' data-id='"+treeId+"' dtree-id='"+rootId+"' data-iconClass='"+iconClass+"'></i>");
  1547. }
  1548. if(snode != ""){_this.getNodeDom($div).snode().replaceWith($(snode));}
  1549. },
  1550. checkbox: function(checkArr) { // 复选框
  1551. var flag = false;
  1552. if(_this.checkbarLoad == "node"){if (checkbar) {flag = true;}} else {if (last) {if (checkbar) {flag = true;}}}
  1553. if(flag){
  1554. var result = "<div class='"+LI_DIV_CHECKBAR+"' data-id='"+treeId+"' dtree-id='"+rootId+"'>";
  1555. if(checkArr && checkArr.length > 0){
  1556. for (var i = 0; i < checkArr.length; i++) {
  1557. var checkData = checkArr[i];
  1558. var checked = checkData.checked;
  1559. var CHOOSE_CLASS = _this.usefontStyle.checkbox.out;
  1560. if (checked == "2") { //半选择
  1561. CHOOSE_CLASS = _this.usefontStyle.checkbox.noall + " " + _this.style.chs;
  1562. } else if (checked == "1") { //选择
  1563. CHOOSE_CLASS = _this.usefontStyle.checkbox.on + " " + _this.style.chs;
  1564. } else { //未选择或者无值
  1565. CHOOSE_CLASS = _this.usefontStyle.checkbox.out;
  1566. }
  1567. var disClass = "";
  1568. if(disabled){disClass = NAV_DIS;}
  1569. result += "<i class='"+CHOOSE_CLASS+" "+_this.style.dfont+" "+_this.style.cbox+" "+disClass+"' data-id='"+treeId+"' dtree-id='"+rootId+"' data-checked='"+checkData.checked+"' data-initchecked='"+checkData.checked+"' data-type='"+checkData.type+"' dtree-click='"+eventName.checkNodeClick+"' data-par='."+LI_CLICK_CHECKBAR+"' dtree-disabled='"+disabled+"'></i>";
  1570. }
  1571. }
  1572. result += "</div>";
  1573. _this.getNodeDom($div).snode().next("div").replaceWith($(result));
  1574. }
  1575. },
  1576. text: function(title) { // 文字显示
  1577. var disClass = "";
  1578. if(disabled){disClass = NAV_DIS;}
  1579. var cite = "<cite class='"+LI_DIV_TEXT_CLASS+" "+disClass+"' data-id='"+treeId+"' data-leaf='"+(last ? "leaf" : "node")+"' dtree-disabled='"+disabled+"' >"+title+"</cite>"
  1580. _this.getNodeDom($div).cite().replaceWith($(cite));
  1581. },
  1582. ul: function() { //子节点ul
  1583. var ul = last ? "<ul class='"+LI_NAV_CHILD+"' data-id='"+treeId+"' dtree-id='"+rootId+"'></ul>" :
  1584. (spread ? "<ul class='"+LI_NAV_CHILD+" "+NAV_SHOW+"' data-id='"+treeId+"' dtree-id='"+rootId+"'></ul>" : "<ul class='"+LI_NAV_CHILD+"' data-id='"+treeId+"' dtree-id='"+rootId+"'></ul>");
  1585. _this.getNodeDom($div).nextUl().replaceWith($(ul));
  1586. },
  1587. basicData: function(basicData){
  1588. basicData = (basicData == "{}") ? "" : basicData;
  1589. $div.attr("data-basic", basicData);
  1590. },
  1591. recordData: function(recordData){
  1592. recordData = (recordData == "{}") ? "" : recordData;
  1593. $div.attr("data-record", recordData);
  1594. },
  1595. p_li: function(){
  1596. $div.parent("li").attr("data-id", treeId);
  1597. }
  1598. };
  1599. };
  1600. // 获取拼接好的li
  1601. DTree.prototype.getLiItemDom = function(treeId, parentId, title, fmtTitle, last, iconClass, checkArr, level, spread, disabled, hide, basicData, recordData, flag) {
  1602. var _this = this,
  1603. rootId = _this.obj[0].id;
  1604. var dom = _this.getDom(treeId, parentId, title, fmtTitle, last, iconClass, checkArr, level, spread, disabled, hide);
  1605. basicData = (basicData == "{}") ? "" : basicData;
  1606. recordData = (recordData == "{}") ? "" : recordData;
  1607. var div = "<div class='"+LI_DIV_ITEM+" "+_this.style.item+"' data-id='"+treeId+"' dtree-id='"+rootId+"' dtree-click='"+eventName.itemNodeClick+"' data-basic='"+basicData+"' data-record='"+recordData+"' dtree-disabled='"+disabled+"' dtree-hide='"+hide+"' ";
  1608. if(_this.toolbar){
  1609. if(_this.toolbarWay == "contextmenu") {
  1610. if(_this.toolbarLoad == "node") { div += " d-contextmenu='true'>"; }
  1611. if(_this.toolbarLoad == "noleaf") { if(!last){ div += " d-contextmenu='true'>"; } else { div += " d-contextmenu='false'>";} }
  1612. if(_this.toolbarLoad == "leaf") { if(last){ div += " d-contextmenu='true'>"; } else { div += " d-contextmenu='false'>";} }
  1613. } else { div += " d-contextmenu='false'>"; }
  1614. } else { div += " d-contextmenu='false'>"; }
  1615. var hideClass = "";
  1616. if(hide){hideClass = NAV_HIDE;}
  1617. var li = ["<li " + "class='"+LI_CLICK_CHECKBAR+" "+LI_NAV_ITEM+" "+hideClass+"'" + "data-id='"+treeId+"'" + "data-pid='"+(flag == "root" ? ((typeof parentId !== undefined && parentId != "") ? parentId : "-1") : parentId)+"'" + "dtree-id='"+rootId+"'" + "data-index='"+level+"'" + "dtree-hide='"+hide+"'" +">" +
  1618. div ,
  1619. dom.fnode(),
  1620. dom.node(),
  1621. dom.checkbox(),
  1622. dom.text(),
  1623. "</div>", dom.ul(), "</li>"].join("");
  1624. return li;
  1625. };
  1626. // 初始化节点,用于数据回显
  1627. DTree.prototype.dataInit = function(chooseId){
  1628. var _this = this;
  1629. var $div = _this.obj.find("div[data-id='"+chooseId+"']");
  1630. _this.getNodeDom($div).parentLi().find("."+NAV_THIS).removeClass(NAV_THIS);
  1631. _this.getNodeDom($div).parentLi().find("."+_this.style.itemThis).removeClass(_this.style.itemThis);
  1632. $div.addClass(NAV_THIS);
  1633. $div.addClass(_this.style.itemThis);
  1634. _this.setNodeParam($div);
  1635. // 将该节点的父节点全部展开
  1636. var $li_parents = $div.parents("."+LI_NAV_ITEM);
  1637. $li_parents.children("ul").addClass(NAV_SHOW);
  1638. $li_parents.children("."+LI_DIV_ITEM).children("i[data-spread]."+event.trimToDot(_this.usefontStyle.fnode.node.close)).addClass(_this.usefontStyle.fnode.node.open);
  1639. $li_parents.children("."+LI_DIV_ITEM).children("i[data-spread]."+event.trimToDot(_this.usefontStyle.fnode.node.close)).removeClass(_this.usefontStyle.fnode.node.close);
  1640. $li_parents.children("."+LI_DIV_ITEM).children("i[data-spread]."+event.trimToDot(_this.usefontStyle.snode.node.close)).addClass(_this.usefontStyle.snode.node.open);
  1641. $li_parents.children("."+LI_DIV_ITEM).children("i[data-spread]."+event.trimToDot(_this.usefontStyle.snode.node.close)).removeClass(_this.usefontStyle.snode.node.close);
  1642. return _this.getNowParam();
  1643. };
  1644. /******************** 基础事件区域 ********************/
  1645. // 数据格式化
  1646. DTree.prototype.escape = function(html){
  1647. return event.escape(html);
  1648. };
  1649. // 格式化数据转回正常数据
  1650. DTree.prototype.unescape = function(str){
  1651. return event.unescape(str);
  1652. };
  1653. // 选中div
  1654. DTree.prototype.navThis = function(id){
  1655. var _this = this;
  1656. var $div = (typeof id === 'object') ? id : (_this.obj.find("div[dtree-click='"+eventName.itemNodeClick+"'][data-id='"+id+"']").length == 0) ? null : _this.obj.find("div[dtree-click='"+eventName.itemNodeClick+"'][data-id='"+id+"']");
  1657. if($div != null) {
  1658. _this.obj.find("div[data-id]").parent().find("."+NAV_THIS).removeClass(NAV_THIS);
  1659. _this.obj.find("div[data-id]").parent().find("."+_this.style.itemThis).removeClass(_this.style.itemThis);
  1660. $div.addClass(NAV_THIS);
  1661. $div.addClass(_this.style.itemThis);
  1662. }
  1663. }
  1664. // 手风琴模式操作其他节点
  1665. DTree.prototype.accordionUL = function($ul) {
  1666. var _this = this;
  1667. if(_this.accordion) {
  1668. $ul.closest("li[data-index]").siblings("li[data-index]").children("ul[data-id]").removeClass(NAV_SHOW);
  1669. var $divs = $ul.closest("li[data-index]").siblings("li[data-index]").children("ul[data-id]").prev("div");
  1670. if($divs.length && $divs.length > 0) {
  1671. for (var i=0; i<$divs.length; i++) {
  1672. var $div = $($divs[i]);
  1673. var $i_spread = _this.getNodeDom($div).fnode(),
  1674. $i_node = _this.getNodeDom($div).snode();
  1675. if($i_spread.data("spread") != 'last'){
  1676. _this.operateIcon($i_spread, $i_node).close();
  1677. }
  1678. }
  1679. }
  1680. }
  1681. };
  1682. // 展开或隐藏节点 作用点: div
  1683. DTree.prototype.clickSpread = function($div) {
  1684. var _this = this;
  1685. var $i_spread = _this.getNodeDom($div).fnode(),
  1686. $i_node = _this.getNodeDom($div).snode(),
  1687. $cite = _this.getNodeDom($div).cite(),
  1688. spread = $i_spread.data("spread"),
  1689. $ul = $div.next("ul");
  1690. if ($ul.length > 0) {
  1691. if (spread == "close") {
  1692. if (_this.type=="load") { //增加加载
  1693. if (_this.cache) { //开启缓存
  1694. if ($ul.html()) {
  1695. $ul.addClass(NAV_SHOW);
  1696. _this.accordionUL($ul);
  1697. } else { //加载节点
  1698. _this.getChild($div);
  1699. _this.accordionUL($ul);
  1700. }
  1701. }else { //每次取新的数据
  1702. $ul.html("");
  1703. _this.getChild($div);
  1704. _this.accordionUL($ul);
  1705. }
  1706. } else { // 全量加载
  1707. $ul.addClass(NAV_SHOW);
  1708. _this.accordionUL($ul);
  1709. }
  1710. _this.operateIcon($i_spread, $i_node).open();
  1711. } else if (spread == "open") {
  1712. $ul.removeClass(NAV_SHOW);
  1713. _this.operateIcon($i_spread, $i_node).close();
  1714. }
  1715. }
  1716. };
  1717. // 设置节点为disabled
  1718. DTree.prototype.setDisabledNodes = function(disabledIds){
  1719. var _this = this;
  1720. var disabledId = disabledIds.split(",");
  1721. for (var i=0; i<disabledId.length; i++) {
  1722. var $div = _this.getNodeDom(disabledId[i]).div();
  1723. var $i = $div.children("div."+LI_DIV_CHECKBAR).children("i[data-par]");
  1724. var $cite = $div.children("cite[data-leaf]");
  1725. if($div != null && $div.attr("dtree-disabled") != "true") {
  1726. $div.attr("dtree-disabled", "true");
  1727. $i.attr("dtree-disabled", "true");
  1728. $i.addClass(NAV_DIS);
  1729. $cite.attr("dtree-disabled", "true");
  1730. $cite.addClass(NAV_DIS);
  1731. }
  1732. }
  1733. };
  1734. // 将节点的disabled取消
  1735. DTree.prototype.cancelDisabledNodes = function(disabledIds){
  1736. var _this = this;
  1737. var disabledId = disabledIds.split(",");
  1738. for (var i=0; i<disabledId.length; i++) {
  1739. var $div = _this.getNodeDom(disabledId[i]).div();
  1740. var $i = $div.children("div."+LI_DIV_CHECKBAR).children("i[data-par]");
  1741. var $cite = $div.children("cite[data-leaf]");
  1742. if($div != null && $div.attr("dtree-disabled") == "true") {
  1743. $div.attr("dtree-disabled", "false");
  1744. $i.attr("dtree-disabled", "false");
  1745. $i.removeClass(NAV_DIS);
  1746. $cite.attr("dtree-disabled", "false");
  1747. $cite.removeClass(NAV_DIS);
  1748. }
  1749. }
  1750. };
  1751. // 获取指定disabled节点的值
  1752. DTree.prototype.getDisabledNodesParam = function(disabledIds){
  1753. var _this = this;
  1754. var disabledId = disabledIds.split(",");
  1755. var disabledNodes = [];
  1756. for (var i=0; i<disabledId.length; i++) {
  1757. var $div = _this.getNodeDom(disabledId[i]).div();
  1758. if($div != null && $div.attr("dtree-disabled") == "true") {
  1759. disabledNodes.push(_this.getRequestParam(_this.getTempNodeParam($div)));
  1760. }
  1761. }
  1762. return disabledNodes;
  1763. };
  1764. // 获取全部disabled节点的值
  1765. DTree.prototype.getAllDisabledNodesParam = function(){
  1766. var _this = this;
  1767. var disabledNodes = [];
  1768. _this.obj.find("div[dtree-click='"+eventName.itemNodeClick+"'][dtree-disabled='true']").each(function(){
  1769. var $div = $(this);
  1770. disabledNodes.push(_this.getRequestParam(_this.getTempNodeParam($div)));
  1771. });
  1772. return disabledNodes;
  1773. };
  1774. // 设置节点为hide
  1775. DTree.prototype.setHideNodes = function(hideIds){
  1776. var _this = this;
  1777. var hideId = hideIds.split(",");
  1778. for (var i=0; i<hideId.length; i++) {
  1779. var $div = _this.getNodeDom(hideId[i]).div();
  1780. var $li = $div.parent("li[dtree-hide]");
  1781. if($div != null && $div.attr("dtree-hide") != "true") {
  1782. $div.attr("dtree-hide", "true");
  1783. $li.attr("dtree-hide", "true");
  1784. $li.addClass(NAV_HIDE);
  1785. }
  1786. }
  1787. };
  1788. // 将节点的hide取消
  1789. DTree.prototype.cancelHideNodes = function(hideIds){
  1790. var _this = this;
  1791. var hideId = hideIds.split(",");
  1792. for (var i=0; i<hideId.length; i++) {
  1793. var $div = _this.getNodeDom(hideId[i]).div();
  1794. var $li = $div.parent("li[dtree-hide]");
  1795. if($div != null && $div.attr("dtree-hide") == "true") {
  1796. $div.attr("dtree-hide", "false");
  1797. $li.attr("dtree-hide", "false");
  1798. $li.removeClass(NAV_HIDE);
  1799. }
  1800. }
  1801. };
  1802. // 获取指定hide节点的值
  1803. DTree.prototype.getHideNodesParam = function(hideIds){
  1804. var _this = this;
  1805. var hideId = hideIds.split(",");
  1806. var hideNodes = [];
  1807. for (var i=0; i<hideId.length; i++) {
  1808. var $div = _this.getNodeDom(hideId[i]).div();
  1809. if($div != null && $div.attr("dtree-hide") == "true") {
  1810. hideNodes.push(_this.getRequestParam(_this.getTempNodeParam($div)));
  1811. }
  1812. }
  1813. return hideNodes;
  1814. };
  1815. // 获取全部hide节点的值
  1816. DTree.prototype.getAllHideNodesParam = function(){
  1817. var _this = this;
  1818. var hideNodes = [];
  1819. _this.obj.find("div[dtree-click='"+eventName.itemNodeClick+"'][dtree-hide='true']").each(function(){
  1820. var $div = $(this);
  1821. hideNodes.push(_this.getRequestParam(_this.getTempNodeParam($div)));
  1822. });
  1823. return hideNodes;
  1824. };
  1825. // 刷新树
  1826. DTree.prototype.refreshTree = function(){
  1827. var _this = this;
  1828. _this.obj.html(""); // 清空树结构
  1829. _this.initNodeParam(); // 清空参数
  1830. _this.init(); //执行初始化方法
  1831. }
  1832. // 局部刷新树--新增子节点时
  1833. DTree.prototype.partialRefreshAdd = function($div, data){
  1834. var _this = this;
  1835. $ul = $div.next("ul");
  1836. // 判断当前点击的节点是否是最后一级节点,如果是,则需要修改节点的样式
  1837. var $icon_i = $div.find("i[data-spread]");
  1838. if ($icon_i.eq(0).data("spread") == "last") {
  1839. _this.operateIcon($icon_i.eq(0), $icon_i.eq(1)).openWithDot();
  1840. } else { //如果不是,也要修改节点样式
  1841. _this.operateIcon($icon_i.eq(0), $icon_i.eq(1)).open();
  1842. }
  1843. $ul.addClass(NAV_SHOW); //展开UL
  1844. _this.accordionUL($ul);
  1845. if(data) {
  1846. if(data.length && data.length > 0) {
  1847. _this.getChild($div, data);
  1848. } else {
  1849. var parseData = _this.parseData(data);
  1850. if(parseData.treeId()){
  1851. var level = parseInt($div.parent("li").attr("data-index"))+1;
  1852. $ul.append(_this.getLiItemDom(parseData.treeId(), parseData.parentId(), parseData.title(), parseData.fmtTitle(), parseData.last(0), parseData.iconClass(), parseData.checkArr(), level, parseData.spread(), parseData.disabled(), parseData.hide(), parseData.basicData(), parseData.recordData(), "item"));
  1853. // 建造完毕后,选中该DIV
  1854. $thisDiv = $ul.find("div[data-id='"+parseData.treeId()+"']");
  1855. _this.setNodeParam($thisDiv);
  1856. } else {
  1857. layer.msg("添加失败,节点ID为undefined!",{icon:5});
  1858. // 重新赋值
  1859. _this.setNodeParam($div);
  1860. }
  1861. }
  1862. } else {
  1863. _this.getChild($div);
  1864. }
  1865. }
  1866. // 局部刷新树--编辑当前节点选中节点时
  1867. DTree.prototype.partialRefreshEdit = function($div, data){
  1868. var _this = this;
  1869. $ul = $div.next("ul");
  1870. if(data) {
  1871. if(typeof data === 'object') {
  1872. var parseData = _this.parseData(data);
  1873. if(parseData.treeId()){
  1874. var replaceDom = _this.replaceDom($div, parseData.treeId(), parseData.last(0), parseData.spread(), parseData.disabled(), parseData.hide());
  1875. replaceDom.node(parseData.iconClass());
  1876. replaceDom.checkbox(parseData.checkArr());
  1877. replaceDom.text(parseData.title());
  1878. replaceDom.ul();
  1879. replaceDom.basicData(parseData.basicData());
  1880. replaceDom.recordData(parseData.recordData());
  1881. _this.setNodeParam($div);
  1882. } else {
  1883. layer.msg("编辑失败,节点ID为undefined!",{icon:5});
  1884. // 重新赋值
  1885. _this.setNodeParam($div);
  1886. }
  1887. } else {
  1888. _this.getNodeDom($div).cite().html(data);
  1889. }
  1890. }
  1891. }
  1892. // 局部刷新树--当前节点选中被删除时
  1893. DTree.prototype.partialRefreshDel = function($div){
  1894. var _this = this;
  1895. $p_li = $div.parent("li");
  1896. $p_ul = _this.getNodeDom($div).parentUl();
  1897. $p_div = _this.getNodeDom($div).parentDiv();
  1898. $p_li.remove();
  1899. // 判断父级ul中是否还存在li,如果不存在,则需要修改节点的样式
  1900. if($p_ul.children("li").length == 0){
  1901. var $icon_i = $p_div.find("i[data-spread]");
  1902. _this.operateIcon($icon_i.eq(0), $icon_i.eq(1)).closeWithDot();
  1903. }
  1904. _this.initNodeParam();
  1905. }
  1906. /******************** 复选框区域 ********************/
  1907. // 初始化复选框的值
  1908. DTree.prototype.chooseDataInit = function(chooseIds){
  1909. var _this = this;
  1910. var chooseId = chooseIds.split(",");
  1911. for (var i=0; i<chooseId.length; i++) {
  1912. _this.obj.find("i[dtree-click='"+eventName.checkNodeClick+"']").each(function(){
  1913. if ($(this).attr("data-id") == chooseId[i]) {
  1914. _this.checkStatus($(this)).check();
  1915. }
  1916. });
  1917. }
  1918. // 展开选中节点的父节点
  1919. var $li_parents = _this.obj.find("i[dtree-click='"+eventName.checkNodeClick+"'][data-checked='1']").parents("."+LI_NAV_ITEM);
  1920. $li_parents.children("ul").addClass(NAV_SHOW);
  1921. $li_parents.children("."+LI_DIV_ITEM).children("i[data-spread]."+event.trimToDot(_this.usefontStyle.fnode.node.close)).addClass(_this.usefontStyle.fnode.node.open);
  1922. $li_parents.children("."+LI_DIV_ITEM).children("i[data-spread]."+event.trimToDot(_this.usefontStyle.fnode.node.close)).removeClass(_this.usefontStyle.fnode.node.close);
  1923. $li_parents.children("."+LI_DIV_ITEM).children("i[data-spread]."+event.trimToDot(_this.usefontStyle.snode.node.close)).addClass(_this.usefontStyle.snode.node.open);
  1924. $li_parents.children("."+LI_DIV_ITEM).children("i[data-spread]."+event.trimToDot(_this.usefontStyle.snode.node.close)).removeClass(_this.usefontStyle.snode.node.close);
  1925. return _this.getCheckbarNodesParam();
  1926. };
  1927. //实现复选框点击,子集选中父级也选中
  1928. DTree.prototype.checkAllOrNot = function($i) {
  1929. var _this = this;
  1930. //$i 当前点击的checkbox
  1931. var dataPar = $i.attr("data-par"),
  1932. dataType = $i.attr("data-type"),
  1933. $li = $i.closest(dataPar), //当前checkbox的上级li节点
  1934. $parent_li = $i.parents(dataPar), //当前checkbox的所有父级li节点
  1935. $child_li = $li.find(dataPar); //当前checkbox的上级li节点下的所有子级li节点
  1936. if ($i.attr("data-checked") == "1") {
  1937. // 处理当前节点的选中状态
  1938. _this.checkStatus($i).noCheck();
  1939. // 处理子级节点的选中状态
  1940. var $child_li_i = $child_li.find(">."+LI_DIV_ITEM+">."+LI_DIV_CHECKBAR+">i[data-type='"+dataType+"']");
  1941. _this.checkStatus($child_li_i).noCheck();
  1942. // 处理父级节点的选中状态
  1943. for (var i = 1, item = $parent_li; i < item.length; i++) {
  1944. var flag = item.eq(i).find(">."+LI_NAV_CHILD+" ."+LI_DIV_CHECKBAR+">i[data-type='"+dataType+"'][data-checked='1']").length;
  1945. if (flag == 0) {
  1946. //把父级去掉选中
  1947. var $item_i = item.eq(i).find(">."+LI_DIV_ITEM+">."+LI_DIV_CHECKBAR+">i[data-type='"+dataType+"']");
  1948. _this.checkStatus($item_i).noCheck();
  1949. }
  1950. }
  1951. } else {
  1952. // 处理当前节点的选中状态
  1953. _this.checkStatus($i).check();
  1954. // 处理子级节点的选中状态
  1955. var $child_li_i = $child_li.find(">."+LI_DIV_ITEM+">."+LI_DIV_CHECKBAR+">i[data-type='"+dataType+"']");
  1956. _this.checkStatus($child_li_i).check();
  1957. // 处理父级节点的选中状态
  1958. for (var i = 1, item = $parent_li; i < item.length; i++) {
  1959. var $item_i = item.eq(i).find(">."+LI_DIV_ITEM+">."+LI_DIV_CHECKBAR+">i[data-type='"+dataType+"']");
  1960. //把父级选中
  1961. _this.checkStatus($item_i).check();
  1962. }
  1963. }
  1964. };
  1965. //实现复选框点击, no-all 子集选中父级半选中,子集全选父级选中
  1966. DTree.prototype.checkAllOrNoallOrNot = function($i) {
  1967. var _this = this;
  1968. //$i 当前点击的checkbox
  1969. var $div = $i.closest("."+LI_DIV_ITEM),
  1970. dataPar = $i.attr("data-par"),
  1971. dataType = $i.attr("data-type"),
  1972. $li = $i.closest(dataPar), //当前checkbox的上级li节点
  1973. $parent_li = $i.parents(dataPar), //当前checkbox的所有父级li节点
  1974. $child_li = $li.find(dataPar); //当前checkbox的上级li节点下的所有子级li节点
  1975. if ($i.attr("data-checked") == "1") { //当前复选框为选中状态,点击后变为未选中状态
  1976. // 处理当前节点的选中状态
  1977. _this.checkStatus($i).noCheck();
  1978. // 处理子级节点的选中状态
  1979. var $child_li_i = $child_li.find(">."+LI_DIV_ITEM+">."+LI_DIV_CHECKBAR+">i[data-type='"+dataType+"']");
  1980. _this.checkStatus($child_li_i).noCheck();
  1981. // 处理父级节点的选中状态
  1982. for (var i = 1, item = $parent_li; i < item.length; i++) {
  1983. var flag = item.eq(i).find(">."+LI_NAV_CHILD+" ."+LI_DIV_CHECKBAR+">i[data-type='"+dataType+"'][data-checked='1']").length;
  1984. var $item_i = item.eq(i).find(">."+LI_DIV_ITEM+">."+LI_DIV_CHECKBAR+">i[data-type='"+dataType+"']");
  1985. if (flag == 0) {
  1986. //把父级去掉选中
  1987. _this.checkStatus($item_i).noCheck();
  1988. } else {
  1989. //把父级半选
  1990. _this.checkStatus($item_i).noallCheck();
  1991. }
  1992. }
  1993. } else { //当前复选框为未选中状态,点击后变为选中状态
  1994. // 处理当前节点的选中状态
  1995. _this.checkStatus($i).check();
  1996. // 处理子级节点的选中状态
  1997. var $child_li_i = $child_li.find(">."+LI_DIV_ITEM+">."+LI_DIV_CHECKBAR+">i[data-type='"+dataType+"']");
  1998. _this.checkStatus($child_li_i).check();
  1999. // 处理父级节点的选中状态
  2000. for (var i = 1, item = $parent_li; i < item.length; i++) {
  2001. var flag1 = item.eq(i).find(">."+LI_NAV_CHILD+" ."+LI_DIV_CHECKBAR+">i[data-type='"+dataType+"'][data-checked='1']").length;
  2002. var flag2 = item.eq(i).find(">."+LI_NAV_CHILD+" ."+LI_DIV_CHECKBAR+">i[data-type='"+dataType+"']").length;
  2003. var $item_i = item.eq(i).find(">."+LI_DIV_ITEM+">."+LI_DIV_CHECKBAR+">i[data-type='"+dataType+"']");
  2004. if (flag1 != flag2) {
  2005. // 父级复选框半选
  2006. _this.checkStatus($item_i).noallCheck();
  2007. } else {
  2008. // 父级复选框全选
  2009. _this.checkStatus($item_i).check();
  2010. }
  2011. }
  2012. }
  2013. };
  2014. //实现复选框点击,p-casc:父级选中子集全选,子集无法改变父级选中状态
  2015. DTree.prototype.checkAllOrPcascOrNot = function($i) {
  2016. var _this = this;
  2017. //$i 当前点击的checkbox
  2018. var $div = $i.closest("."+LI_DIV_ITEM),
  2019. dataPar = $i.attr("data-par"),
  2020. dataType = $i.attr("data-type"),
  2021. $li = $i.closest(dataPar), //当前checkbox的上级li节点
  2022. $parent_li = $i.parents(dataPar), //当前checkbox的所有父级li节点
  2023. $child_li = $li.find(dataPar); //当前checkbox的上级li节点下的所有子级li节点
  2024. if ($i.attr("data-checked") == "1") { //当前复选框为选中状态,点击后变为未选中状态
  2025. // 处理当前节点的选中状态
  2026. _this.checkStatus($i).noCheck();
  2027. // 处理子级节点的选中状态
  2028. var $child_li_i = $child_li.find(">."+LI_DIV_ITEM+">."+LI_DIV_CHECKBAR+">i[data-type='"+dataType+"']");
  2029. _this.checkStatus($child_li_i).noCheck();
  2030. } else { //当前复选框为未选中状态,点击后变为选中状态
  2031. // 处理当前节点的选中状态
  2032. _this.checkStatus($i).check();
  2033. // 处理子级节点的选中状态
  2034. var $child_li_i = $child_li.find(">."+LI_DIV_ITEM+">."+LI_DIV_CHECKBAR+">i[data-type='"+dataType+"']");
  2035. _this.checkStatus($child_li_i).check();
  2036. }
  2037. };
  2038. //实现复选框点击,self:各自选中互不影响
  2039. DTree.prototype.checkOrNot = function($i) {
  2040. var _this = this;
  2041. //$i 当前点击的checkbox
  2042. var $div = $i.closest("."+LI_DIV_ITEM),
  2043. dataPar = $i.attr("data-par"),
  2044. dataType = $i.attr("data-type"),
  2045. $li = $i.closest(dataPar), //当前checkbox的上级li节点
  2046. $parent_li = $i.parents(dataPar), //当前checkbox的所有父级li节点
  2047. $child_li = $li.find(dataPar); //当前checkbox的上级li节点下的所有子级li节点
  2048. if ($i.attr("data-checked") == "1") { //当前复选框为选中状态,点击后变为未选中状态
  2049. // 处理当前节点的选中状态
  2050. _this.checkStatus($i).noCheck();
  2051. } else { //当前复选框为未选中状态,点击后变为选中状态
  2052. // 处理当前节点的选中状态
  2053. _this.checkStatus($i).check();
  2054. }
  2055. };
  2056. //实现复选框点击,only:只能选中1个复选框
  2057. DTree.prototype.checkOnly = function($i) {
  2058. var _this = this;
  2059. //$i 当前点击的checkbox
  2060. var $div = $i.closest("."+LI_DIV_ITEM),
  2061. dataPar = $i.attr("data-par"),
  2062. dataType = $i.attr("data-type"),
  2063. $li = $i.closest(dataPar), //当前checkbox的上级li节点
  2064. $parent_li = $i.parents(dataPar), //当前checkbox的所有父级li节点
  2065. $child_li = $li.find(dataPar); //当前checkbox的上级li节点下的所有子级li节点
  2066. var checked = $i.attr("data-checked");
  2067. // 将全部节点全部设为未选中状态
  2068. var $all_i = _this.obj.find("i[data-checked]");
  2069. _this.checkStatus($all_i).noCheck();
  2070. if (checked != "1") { //当前复选框为未选中状态,点击后变为选中状态
  2071. // 处理当前节点的选中状态
  2072. _this.checkStatus($i).check();
  2073. }
  2074. };
  2075. //实现复选框点击
  2076. DTree.prototype.changeCheck = function() {
  2077. var _this = this;
  2078. var temp = _this.temp;
  2079. var $i = temp[0];
  2080. // 复选框选中事件
  2081. if (_this.checkbarType == "all") {
  2082. _this.checkAllOrNot($i);
  2083. } else if(_this.checkbarType == "no-all") {
  2084. _this.checkAllOrNoallOrNot($i);
  2085. } else if(_this.checkbarType == "p-casc") {
  2086. _this.checkAllOrPcascOrNot($i);
  2087. } else if(_this.checkbarType == "self") {
  2088. _this.checkOrNot($i);
  2089. } else if(_this.checkbarType == "only") {
  2090. _this.checkOnly($i);
  2091. } else {
  2092. _this.checkAllOrNot($i);
  2093. }
  2094. // 获取复选框选中节点的内容
  2095. var checkbarNodes = _this.setAndGetCheckbarNodesParam();
  2096. // 用户自定义想做的事情
  2097. _this.checkbarFun.chooseDone(checkbarNodes);
  2098. layui.event.call(this, MOD_NAME, "chooseDone("+$(_this.obj)[0].id+")", {"checkbarParams": checkbarNodes});
  2099. _this.temp = [];
  2100. };
  2101. //复选框半选状态初始化设置
  2102. DTree.prototype.initNoAllCheck = function(){
  2103. var _this = this;
  2104. //1.获取所有选中节点
  2105. var $is = _this.obj.find("i[data-checked='1']");
  2106. if($is.length > 0){
  2107. for ( var key = 0; key < $is.length; key++) {
  2108. var $i = $($is[key]),
  2109. dataPar = $i.attr("data-par"),
  2110. dataType = $i.attr("data-type"),
  2111. $li = $i.closest(dataPar), //当前checkbox的上级li节点
  2112. $parent_li = $i.parents(dataPar), //当前checkbox的所有父级li节点
  2113. $child_li = $li.find(dataPar); //当前checkbox的上级li节点下的所有子级li节点
  2114. // 处理父级节点的选中状态
  2115. for (var i = 1, item = $parent_li; i < item.length; i++) {
  2116. var flag1 = item.eq(i).find(">."+LI_NAV_CHILD+" ."+LI_DIV_CHECKBAR+">i[data-type='"+dataType+"'][data-checked='1']").length;
  2117. var flag2 = item.eq(i).find(">."+LI_NAV_CHILD+" ."+LI_DIV_CHECKBAR+">i[data-type='"+dataType+"']").length;
  2118. var $item_i = item.eq(i).find(">."+LI_DIV_ITEM+">."+LI_DIV_CHECKBAR+">i[data-type='"+dataType+"']");
  2119. if (flag1 != flag2) {
  2120. // 父级复选框半选
  2121. _this.checkStatus($item_i).noallCheck();
  2122. } else {
  2123. // 父级复选框全选
  2124. _this.checkStatus($item_i).check();
  2125. }
  2126. }
  2127. }
  2128. }
  2129. };
  2130. //复选框选中状态初始化设置
  2131. DTree.prototype.initAllCheck = function(){
  2132. var _this = this;
  2133. //1.获取所有选中节点
  2134. var $is = _this.obj.find("i[data-checked='1']");
  2135. if($is.length > 0){
  2136. for ( var key = 0; key < $is.length; key++) {
  2137. var $i = $($is[key]),
  2138. dataPar = $i.attr("data-par"),
  2139. dataType = $i.attr("data-type"),
  2140. $li = $i.closest(dataPar), //当前checkbox的上级li节点
  2141. $parent_li = $i.parents(dataPar), //当前checkbox的所有父级li节点
  2142. $child_li = $li.find(dataPar); //当前checkbox的上级li节点下的所有子级li节点
  2143. // 处理父级节点的选中状态
  2144. for (var i = 1, item = $parent_li; i < item.length; i++) {
  2145. var $item_i = item.eq(i).find(">."+LI_DIV_ITEM+">."+LI_DIV_CHECKBAR+">i[data-type='"+dataType+"']");
  2146. // 父级复选框全选
  2147. _this.checkStatus($item_i).check();
  2148. }
  2149. }
  2150. }
  2151. };
  2152. // 设置复选框选中/未选中/半选 _this.checkStatus($i).check(); _this.checkStatus($i).noCheck(); _this.checkStatus($i).noallCheck();
  2153. DTree.prototype.checkStatus = function($i) {
  2154. var _this = this;
  2155. return {
  2156. check: function(){
  2157. $i.removeClass(_this.usefontStyle.checkbox.out);
  2158. $i.removeClass(_this.usefontStyle.checkbox.noall);
  2159. $i.addClass(_this.usefontStyle.checkbox.on);
  2160. $i.addClass(_this.style.chs);
  2161. $i.attr("data-checked","1");
  2162. },
  2163. noCheck: function(){
  2164. $i.removeClass(_this.usefontStyle.checkbox.noall);
  2165. $i.removeClass(_this.usefontStyle.checkbox.on);
  2166. $i.removeClass(_this.style.chs);
  2167. $i.addClass(_this.usefontStyle.checkbox.out);
  2168. $i.attr("data-checked","0");
  2169. },
  2170. noallCheck: function(){
  2171. $i.removeClass(_this.usefontStyle.checkbox.out);
  2172. $i.removeClass(_this.usefontStyle.checkbox.on);
  2173. $i.addClass(_this.usefontStyle.checkbox.noall);
  2174. $i.addClass(_this.style.chs);
  2175. $i.attr("data-checked","2");
  2176. }
  2177. }
  2178. };
  2179. // 设置树的复选框操作值的全部参数,并获取
  2180. DTree.prototype.setAndGetCheckbarNodesParam = function() {
  2181. var _this = this;
  2182. //操作前先清空
  2183. _this.checkbarNode = [];
  2184. // 选择所有复选框节点
  2185. if (_this.checkbarData == "change"){ //记录变更数据
  2186. _this.obj.find("i[data-par][dtree-disabled='false']").each(function(){
  2187. var $i = $(this), $div = $i.closest("."+LI_DIV_ITEM);
  2188. if ($i.attr("data-checked") != $i.attr("data-initchecked")) {
  2189. _this.checkbarNode.push(_this.getRequestParam(_this.getCheckbarNodeParam($div, $i)));
  2190. }
  2191. });
  2192. } else if (_this.checkbarData == "all"){ //记录全部数据
  2193. _this.obj.find("i[data-par][data-checked][dtree-disabled='false']").each(function(){
  2194. var $i = $(this), $div = $i.closest("."+LI_DIV_ITEM);
  2195. _this.checkbarNode.push(_this.getRequestParam(_this.getCheckbarNodeParam($div, $i)));
  2196. });
  2197. } else if (_this.checkbarData == "choose"){ //记录选中数据
  2198. _this.obj.find("i[data-par][data-checked='1'][dtree-disabled='false']").each(function(){
  2199. var $i = $(this), $div = $i.closest("."+LI_DIV_ITEM);
  2200. _this.checkbarNode.push(_this.getRequestParam(_this.getCheckbarNodeParam($div, $i)));
  2201. });
  2202. } else if (_this.checkbarData == "halfChoose"){ //记录选中和半选数据
  2203. _this.obj.find("i[data-par][data-checked='1'][dtree-disabled='false']").each(function(){
  2204. var $i = $(this), $div = $i.closest("."+LI_DIV_ITEM);
  2205. _this.checkbarNode.push(_this.getRequestParam(_this.getCheckbarNodeParam($div, $i)));
  2206. });
  2207. _this.obj.find("i[data-par][data-checked='2'][dtree-disabled='false']").each(function(){
  2208. var $i = $(this), $div = $i.closest("."+LI_DIV_ITEM);
  2209. _this.checkbarNode.push(_this.getRequestParam(_this.getCheckbarNodeParam($div, $i)));
  2210. });
  2211. }
  2212. return _this.checkbarNode;
  2213. };
  2214. // 获取树的复选框操作值的全部参数
  2215. DTree.prototype.getCheckbarNodesParam = function() {
  2216. var _this = this;
  2217. return _this.setAndGetCheckbarNodesParam();
  2218. };
  2219. // 获取树的一个复选框的参数
  2220. DTree.prototype.getCheckbarNodeParam = function($div, $i){
  2221. var _this = this;
  2222. var temp_node = {};
  2223. temp_node.nodeId = $div.attr("data-id");
  2224. temp_node.parentId = _this.getNodeDom($div).parentLi().attr("data-pid");
  2225. temp_node.context = (typeof _this.formatter.title === 'function') ? _this.getNodeDom($div).cite().attr("data-title") : _this.getNodeDom($div).cite().text();
  2226. temp_node.leaf = _this.getNodeDom($div).cite().attr("data-leaf") == "leaf" ? true : false;
  2227. temp_node.level = _this.getNodeDom($div).parentLi().attr("data-index");
  2228. temp_node.spread = _this.getNodeDom($div).fnode().data("spread") == "open" ? true : false;
  2229. temp_node.basicData = $div.attr("data-basic")
  2230. temp_node.recordData = $div.attr("data-record");
  2231. temp_node.dataType = $i.attr("data-type");
  2232. temp_node.checked = $i.attr("data-checked");
  2233. temp_node.initchecked = $i.attr("data-initchecked");
  2234. return temp_node;
  2235. };
  2236. //判断复选框是否发生变更
  2237. DTree.prototype.changeCheckbarNodes = function(){
  2238. var flag = false;
  2239. var _this = this;
  2240. _this.obj.find("i[data-par]").each(function(){
  2241. var $i = $(this);
  2242. $div = $i.closest("."+LI_DIV_ITEM);
  2243. if ($i.attr("data-checked") != $i.attr("data-initchecked")) {
  2244. flag = true;
  2245. return true;
  2246. }
  2247. });
  2248. return flag;
  2249. };
  2250. /******************** 工具栏及菜单栏区域 ********************/
  2251. // 初始化菜单栏和工具栏的div
  2252. DTree.prototype.initTreePlus = function(){
  2253. var _this = this;
  2254. // 初始化菜单栏和工具栏的div
  2255. _this.obj.prevAll('div#dtree_menubar_'+_this.obj[0].id).remove();
  2256. _this.toolbarMenu = {};
  2257. if(_this.menubar && _this.menubarTips.group && _this.menubarTips.group.length > 0) _this.obj.before("<div class='"+LI_DIV_MENUBAR+"' id='dtree_menubar_"+_this.obj[0].id+"'><div class='layui-btn-group'></div></div>");
  2258. if(_this.toolbar){
  2259. if(_this.toolbarWay == "contextmenu") {
  2260. _this.obj.prevAll('div#dtree_toolbar_'+_this.obj[0].id).remove();
  2261. _this.obj.before("<div class='"+LI_DIV_TOOLBAR+" layui-nav' id='dtree_toolbar_"+_this.obj[0].id+"'><div class='layui-nav-item'><dl class='layui-nav-child layui-anim'></dl></div></div>");
  2262. }
  2263. }
  2264. };
  2265. // 开启工具栏和菜单栏
  2266. DTree.prototype.openTreePlus = function(){
  2267. var _this = this;
  2268. // 先对工具栏做处理,因为菜单栏可能会与工具栏产生关联。
  2269. var ggMenu = [];
  2270. if(_this.toolbar) _this.getToolbarDom();
  2271. if(_this.menubar) {
  2272. var menubarTips = _this.menubarTips,
  2273. mtbar = menubarTips.toolbar,
  2274. group = menubarTips.group,
  2275. freedom = menubarTips.freedom;
  2276. if(mtbar && mtbar.length > 0){
  2277. // 菜单栏吸附工具栏上
  2278. for(var i=0; i<mtbar.length; i++){
  2279. var mt = mtbar[i];
  2280. if(typeof mt === 'string'){
  2281. _this.getMenubarToolDom(mt);
  2282. }
  2283. if(typeof mt === 'object'){
  2284. _this.getExtMenubarToolDom(mt);
  2285. }
  2286. }
  2287. }
  2288. if(group && group.length > 0){
  2289. // 菜单栏吸附在上方的按钮组div中
  2290. for(var i=0; i<group.length; i++){
  2291. var gg = group[i];
  2292. if(typeof gg === 'string'){
  2293. ggMenu.push(_this.getMenubarDom(gg));
  2294. }
  2295. if(typeof gg === 'object'){
  2296. ggMenu.push(_this.getExtMenubarDom(gg));
  2297. }
  2298. }
  2299. _this.obj.prevAll('div#dtree_menubar_'+_this.obj[0].id).children('div.layui-btn-group').append(ggMenu.join(""));
  2300. }
  2301. }
  2302. };
  2303. /******************** 菜单栏区域 ********************/
  2304. // 获取菜单栏
  2305. DTree.prototype.getMenubarDom = function(menu){
  2306. var _this = this;
  2307. var rootId = _this.obj[0].id;
  2308. var gg = "";
  2309. switch (menu) {
  2310. case defaultMenu.moveDown:
  2311. gg = "<button type='button' class='layui-btn layui-btn-sm layui-btn-primary' dtree-id='"+rootId+"' d-menu='"+defaultMenu.moveDown+"' title='展开全部节点'><i class='"+_this.usefontStyle.menubar.movedown+"'></i></button>";
  2312. break;
  2313. case defaultMenu.moveUp:
  2314. gg = "<button type='button' class='layui-btn layui-btn-sm layui-btn-primary' dtree-id='"+rootId+"' d-menu='"+defaultMenu.moveUp+"' title='收缩全部节点'><i class='"+_this.usefontStyle.menubar.moveup+"'></i></button>";
  2315. break;
  2316. case defaultMenu.refresh:
  2317. gg = "<button type='button' class='layui-btn layui-btn-sm layui-btn-primary' dtree-id='"+rootId+"' d-menu='"+defaultMenu.refresh+"' title='刷新'><i class='"+_this.usefontStyle.menubar.refresh+"'></i></button>";
  2318. break;
  2319. case defaultMenu.checkAll:
  2320. gg = (_this.checkbar && _this.checkbarType != 'only') ? "<button type='button' class='layui-btn layui-btn-sm layui-btn-primary' dtree-id='"+rootId+"' d-menu='"+defaultMenu.checkAll+"' title='全选节点'><i class='"+_this.usefontStyle.menubar.checkAll+"'></i></button>" : "";
  2321. break;
  2322. case defaultMenu.unCheckAll:
  2323. gg = (_this.checkbar && _this.checkbarType != 'only') ? "<button type='button' class='layui-btn layui-btn-sm layui-btn-primary' dtree-id='"+rootId+"' d-menu='"+defaultMenu.unCheckAll+"' title='全不选节点'><i class='"+_this.usefontStyle.menubar.unCheckAll+"'></i></button>" : "";
  2324. break;
  2325. case defaultMenu.invertAll:
  2326. gg = (_this.checkbar && _this.checkbarType != 'only') ? "<button type='button' class='layui-btn layui-btn-sm layui-btn-primary' dtree-id='"+rootId+"' d-menu='"+defaultMenu.invertAll+"' title='反选节点'><i class='"+_this.usefontStyle.menubar.invertAll+"'></i></button>" : "";
  2327. break;
  2328. case defaultMenu.remove:
  2329. gg = (_this.checkbar) ? "<button type='button' class='layui-btn layui-btn-sm layui-btn-primary' dtree-id='"+rootId+"' d-menu='"+defaultMenu.remove+"' title='删除选中节点'><i class='"+_this.usefontStyle.menubar.remove+"'></i></button>" : "";
  2330. break;
  2331. case defaultMenu.searchNode:
  2332. gg = "<button type='button' class='layui-btn layui-btn-sm layui-btn-primary' dtree-id='"+rootId+"' d-menu='"+defaultMenu.searchNode+"' title='查询节点'><i class='"+_this.usefontStyle.menubar.search+"'></i></button>";
  2333. break;
  2334. }
  2335. return gg;
  2336. };
  2337. // 获取扩展菜单栏
  2338. DTree.prototype.getExtMenubarDom = function(menu){
  2339. var _this = this;
  2340. return "<button type='button' class='layui-btn layui-btn-sm layui-btn-primary' dtree-id='"+_this.obj[0].id+"' d-menu='"+menu.menubarId+"' title='"+menu.title+"'><i class='"+_this.usefontStyle.menubarExt+" "+menu.icon+"'></i></button>";
  2341. };
  2342. // 获取依附在工具栏的菜单栏
  2343. DTree.prototype.getMenubarToolDom = function(menu){
  2344. var _this = this;
  2345. var rootId = _this.obj[0].id;
  2346. switch (menu) {
  2347. case defaultMenu.moveDown:
  2348. _this.toolbarMenu[defaultMenu.moveDown] = _this.setToolbarDom().setMenuToolbarOption(defaultMenu.moveDown, _this.toolbarStyle.title, _this.usefontStyle.toolbar.menubar.movedown, "展开全部");
  2349. break;
  2350. case defaultMenu.moveUp:
  2351. _this.toolbarMenu[defaultMenu.moveUp] = _this.setToolbarDom().setMenuToolbarOption(defaultMenu.moveUp, _this.toolbarStyle.title, _this.usefontStyle.toolbar.menubar.moveup, "收缩全部");
  2352. break;
  2353. case defaultMenu.refresh:
  2354. _this.toolbarMenu[defaultMenu.refresh] = _this.setToolbarDom().setMenuToolbarOption(defaultMenu.refresh, _this.toolbarStyle.title, _this.usefontStyle.toolbar.menubar.refresh, "刷新");
  2355. break;
  2356. case defaultMenu.checkAll:
  2357. if(_this.checkbar && _this.checkbarType != 'only')
  2358. _this.toolbarMenu[defaultMenu.checkAll] = _this.setToolbarDom().setMenuToolbarOption(defaultMenu.checkAll, _this.toolbarStyle.title, _this.usefontStyle.toolbar.menubar.checkAll, "全选节点");
  2359. break;
  2360. case defaultMenu.unCheckAll:
  2361. if(_this.checkbar && _this.checkbarType != 'only')
  2362. _this.toolbarMenu[defaultMenu.unCheckAll] = _this.setToolbarDom().setMenuToolbarOption(defaultMenu.unCheckAll, _this.toolbarStyle.title, _this.usefontStyle.toolbar.menubar.unCheckAll, "全不选节点");
  2363. break;
  2364. case defaultMenu.invertAll:
  2365. if(_this.checkbar && _this.checkbarType != 'only')
  2366. _this.toolbarMenu[defaultMenu.invertAll] = _this.setToolbarDom().setMenuToolbarOption(defaultMenu.invertAll, _this.toolbarStyle.title, _this.usefontStyle.toolbar.menubar.invertAll, "反选节点");
  2367. break;
  2368. case defaultMenu.remove:
  2369. if(_this.checkbar)
  2370. _this.toolbarMenu[defaultMenu.remove] = _this.setToolbarDom().setMenuToolbarOption(defaultMenu.remove, _this.toolbarStyle.title, _this.usefontStyle.toolbar.menubar.remove, "删除选中");
  2371. break;
  2372. case defaultMenu.searchNode:
  2373. _this.toolbarMenu[defaultMenu.searchNode] = _this.setToolbarDom().setMenuToolbarOption(defaultMenu.searchNode, _this.toolbarStyle.title, _this.usefontStyle.toolbar.menubar.searchNode, "查询");
  2374. break;
  2375. }
  2376. };
  2377. // 获取依附在工具栏的扩展菜单栏
  2378. DTree.prototype.getExtMenubarToolDom = function(menu){
  2379. var _this = this;
  2380. _this.toolbarMenu[menu.menubarId] = _this.setToolbarDom().setMenuToolbarOption(menu.menubarId, menu.title, _this.usefontStyle.toolbar.menubarExt+" "+menu.icon, "");
  2381. };
  2382. // menubar内置方法
  2383. DTree.prototype.menubarMethod = function(){
  2384. var _this = this;
  2385. return {
  2386. openAllNode: function(obj){ // 展开所有节点
  2387. var $ulNode = obj || _this.obj.children("li").children("ul");
  2388. // 遍历所有ul子节点
  2389. for (var i = 0; i < $ulNode.length; i++) {
  2390. // 获取当前节点的信息
  2391. var $ul = $($ulNode[i]),
  2392. $div = $ul.prev("div"),
  2393. $i_spread = _this.getNodeDom($div).fnode(),
  2394. $i_node = _this.getNodeDom($div).snode(),
  2395. $cite = _this.getNodeDom($div).cite(),
  2396. spread = $i_spread.data("spread"),
  2397. leaf = $cite.attr("data-leaf");
  2398. if (leaf == "leaf") { continue; } // 说明是叶子了,则继续循环下一个
  2399. if (spread == "open") {
  2400. // 说明该节点已经展开了,则进行子节点循环
  2401. } else {
  2402. if (_this.type=="load") { //是否全量加载
  2403. if (_this.cache) { //是否开启缓存
  2404. if ($ul.html()) {
  2405. $ul.addClass(NAV_SHOW);
  2406. } else { //加载节点
  2407. _this.getChild($div);
  2408. }
  2409. }else { //每次取新的数据
  2410. $ul.html("");
  2411. _this.getChild($div);
  2412. }
  2413. } else { // 全量加载
  2414. $ul.addClass(NAV_SHOW);
  2415. }
  2416. _this.operateIcon($i_spread, $i_node).open();
  2417. }
  2418. var $childUl = $ul.children("li").children("ul");
  2419. _this.menubarMethod().openAllNode($childUl);
  2420. }
  2421. },
  2422. closeAllNode: function(){ //收缩所有节点
  2423. _this.obj.find("."+LI_NAV_CHILD).each(function(){
  2424. // 获取当前节点的信息
  2425. var $ul = $(this),
  2426. $div = $ul.prev("div"),
  2427. $i_spread = _this.getNodeDom($div).fnode(),
  2428. $i_node = _this.getNodeDom($div).snode(),
  2429. $cite = _this.getNodeDom($div).cite(),
  2430. spread = $i_spread.data("spread"),
  2431. leaf = $cite.attr("data-leaf");
  2432. $ul.removeClass(NAV_SHOW);
  2433. _this.operateIcon($i_spread, $i_node).close();
  2434. });
  2435. },
  2436. refreshTree: function(){// 刷新树
  2437. _this.refreshTree();
  2438. },
  2439. checkAll: function(){ // 全选节点
  2440. var $i = _this.obj.find("i[data-par][data-checked!='1']");
  2441. if($i.length > 0) { _this.checkStatus($i).check(); }
  2442. },
  2443. unCheckAll: function(){ // 全不选节点
  2444. var $i = _this.obj.find("i[data-par][data-checked!='0']");
  2445. if($i.length > 0) { _this.checkStatus($i).noCheck(); }
  2446. },
  2447. invertAll: function(){ // 反选节点
  2448. if(_this.obj.find("i[data-par]").length > 0) {
  2449. var b = false;
  2450. _this.obj.find("i[data-par]").each(function(){
  2451. var $i = $(this);
  2452. if($i.attr("data-checked") == '2'){
  2453. b = true;
  2454. }else if($i.attr("data-checked") == '0') {
  2455. _this.checkStatus($i).check();
  2456. }else if($i.attr("data-checked") == '1') {
  2457. _this.checkStatus($i).noCheck();
  2458. }
  2459. });
  2460. if(b) {
  2461. _this.initNoAllCheck();
  2462. } else {
  2463. _this.initAllCheck();
  2464. }
  2465. }
  2466. },
  2467. remove: function(){// 删除选中节点
  2468. var len = _this.obj.find("i[data-par][data-checked='1']").length;
  2469. if(len == 0){
  2470. layer.msg("请至少选中一个节点",{icon:2});
  2471. }else{
  2472. //操作前先清空
  2473. _this.checkbarNode = [];
  2474. // 选择所有复选框节点
  2475. var i_node = {};
  2476. _this.obj.find("i[data-par][data-checked='1']").each(function(){
  2477. var $i = $(this), $div = $i.closest("."+LI_DIV_ITEM);
  2478. _this.checkbarNode.push(_this.getRequestParam(_this.getCheckbarNodeParam($div, $i)));
  2479. });
  2480. layer.confirm('确定要删除选中节点?', {icon: 3, title:'删除选中节点'}, function(index1){
  2481. var flag = _this.menubarFun.remove(_this.checkbarNode);
  2482. if(flag){
  2483. _this.obj.find("i[data-par][data-checked='1']").closest("."+LI_DIV_ITEM).next("ul").remove();
  2484. _this.obj.find("i[data-par][data-checked='1']").closest("."+LI_DIV_ITEM).remove();
  2485. _this.checkbarNode=[];
  2486. }
  2487. layer.close(index1);
  2488. });
  2489. }
  2490. },
  2491. searchNode: function(){//模糊查询该值,展开该值节点
  2492. layer.prompt({
  2493. formType: 0,
  2494. value: "",
  2495. title: '查询节点'
  2496. }, function(value, index1, elem){
  2497. if (value) {
  2498. var flag = _this.searchNode(value);
  2499. if (!flag) {
  2500. layer.msg("该名称节点不存在!", {icon:5});
  2501. }
  2502. } else {
  2503. layer.msg("未指定查询节点名称", {icon:5});
  2504. }
  2505. layer.close(index1);
  2506. });
  2507. },
  2508. extMethod: function(menuId, $div, flag){
  2509. if(_this.menubar && _this.menubarTips.group && _this.menubarTips.group.length > 0 && flag == "group"){
  2510. for(var i=0; i<_this.menubarTips.group.length; i++){
  2511. var ext = _this.menubarTips.group[i];
  2512. if (menuId == ext.menubarId){
  2513. ext.handler(_this.getRequestParam(_this.getNodeParam($div), $div));
  2514. break;
  2515. }
  2516. }
  2517. }
  2518. if(_this.menubar && _this.menubarTips.toolbar && _this.menubarTips.toolbar.length > 0 && flag == "toolbar"){
  2519. for(var i=0; i<_this.menubarTips.toolbar.length; i++){
  2520. var ext = _this.menubarTips.toolbar[i];
  2521. if (menuId == ext.menubarId){
  2522. ext.handler(_this.getRequestParam(_this.getNodeParam($div), $div));
  2523. break;
  2524. }
  2525. }
  2526. }
  2527. if(_this.menubar && _this.menubarTips.freedom && _this.menubarTips.freedom.length > 0 && flag == "freedom"){
  2528. for(var i=0; i<_this.menubarTips.freedom.length; i++){
  2529. var ext = _this.menubarTips.freedom[i];
  2530. if (menuId == ext.menubarId){
  2531. ext.handler(_this.getRequestParam(_this.getNodeParam($div), $div));
  2532. break;
  2533. }
  2534. }
  2535. }
  2536. }
  2537. };
  2538. };
  2539. // menubar监听方法
  2540. DTree.prototype.menubarListener = function(menuId, flag){
  2541. var _this = this;
  2542. var $div = _this.getNodeDom().nowDiv();
  2543. switch (menuId) {
  2544. case defaultMenu.moveDown: // 展开全部节点
  2545. _this.menubarMethod().openAllNode();
  2546. break;
  2547. case defaultMenu.moveUp: // 收缩全部节点
  2548. _this.menubarMethod().closeAllNode();
  2549. break;
  2550. case defaultMenu.refresh:
  2551. _this.menubarMethod().refreshTree(); // 刷新树
  2552. break;
  2553. case defaultMenu.checkAll:
  2554. _this.menubarMethod().checkAll();
  2555. break;
  2556. case defaultMenu.unCheckAll:
  2557. _this.menubarMethod().unCheckAll();
  2558. break;
  2559. case defaultMenu.invertAll:
  2560. _this.menubarMethod().invertAll();
  2561. break;
  2562. case defaultMenu.remove:
  2563. _this.menubarMethod().remove();
  2564. break;
  2565. case defaultMenu.searchNode:
  2566. _this.menubarMethod().searchNode();
  2567. break;
  2568. default:
  2569. _this.menubarMethod().extMethod(menuId, $div, flag);
  2570. break;
  2571. }
  2572. };
  2573. //模糊查询该值,展开该值节点
  2574. DTree.prototype.searchNode = function(value){
  2575. var _this = this;
  2576. var b = false;
  2577. var $lis = [];
  2578. _this.obj.find("cite[data-leaf]").each(function(){
  2579. var $nthis = $(this);
  2580. var html = $nthis.html();
  2581. if(html.indexOf(value) > -1){
  2582. if($nthis.attr("data-leaf") == "leaf") {
  2583. // 叶子节点提供包含父节点的所有信息
  2584. var title = "";
  2585. $nthis.parents("li").each(function(){
  2586. title = "-" + $(this).find("cite[data-leaf]").html() + title;
  2587. });
  2588. title = title.substring(1, title.length);
  2589. $nthis.attr("title", title);
  2590. }
  2591. // 保存当前cite所在的li及父li中包含该值,则只保留父的
  2592. var i = 0;
  2593. $nthis.parents("li").each(function(){
  2594. var html2 = $(this).find("cite[data-leaf]").html();
  2595. if(html2.indexOf(value) > -1){
  2596. i++;
  2597. }
  2598. if(i >= 2){
  2599. return true;
  2600. }
  2601. });
  2602. if (i < 2){
  2603. $lis.push($nthis.closest("li").prop("outerHTML"));
  2604. }
  2605. }
  2606. });
  2607. if($lis.length > 0) {
  2608. b = true;
  2609. // 1.将树节点清空
  2610. _this.obj.html("");
  2611. // 2.遍历所有cite节点,展开当前cite节点
  2612. for(var i=0; i<$lis.length; i++){
  2613. _this.obj.append($lis[i]);
  2614. }
  2615. }
  2616. return b;
  2617. };
  2618. /******************** 工具栏区域 ********************/
  2619. // 获取工具栏
  2620. DTree.prototype.getToolbarDom = function(){
  2621. var _this = this;
  2622. var toolbarShow = _this.toolbarShow,
  2623. toolbarExt = _this.toolbarExt,
  2624. toolbarWay = _this.toolbarWay;
  2625. if(toolbarShow.length > 0){
  2626. for(var i=0; i<toolbarShow.length; i++){
  2627. var show = toolbarShow[i];
  2628. if(show == "pulldown"){
  2629. _this.toolbarMenu[defaultTool.pulldown] = _this.setToolbarDom().setToolbarOption(defaultTool.pulldown, _this.toolbarStyle.title, _this.usefontStyle.toolbar.pulldown, "展开");
  2630. }
  2631. if(show == "pullup"){
  2632. _this.toolbarMenu[defaultTool.pullup] = _this.setToolbarDom().setToolbarOption(defaultTool.pullup, _this.toolbarStyle.title, _this.usefontStyle.toolbar.pullup, "收缩");
  2633. }
  2634. if(show == "add"){
  2635. _this.toolbarMenu[defaultTool.addTool] = _this.setToolbarDom().setToolbarOption(defaultTool.addTool, _this.toolbarStyle.title, _this.usefontStyle.toolbar.add, "新增");
  2636. }
  2637. if(show == "edit"){
  2638. _this.toolbarMenu[defaultTool.editTool] = _this.setToolbarDom().setToolbarOption(defaultTool.editTool, _this.toolbarStyle.title, _this.usefontStyle.toolbar.edit, "编辑");
  2639. }
  2640. if(show == "delete"){
  2641. _this.toolbarMenu[defaultTool.delTool] = _this.setToolbarDom().setToolbarOption(defaultTool.delTool, _this.toolbarStyle.title, _this.usefontStyle.toolbar.del, "删除");
  2642. }
  2643. }
  2644. }
  2645. if(toolbarExt.length > 0){
  2646. for(var i=0; i<toolbarExt.length; i++){
  2647. var ext = toolbarExt[i];
  2648. _this.toolbarMenu[ext.toolbarId] = _this.setToolbarDom().setToolbarOption(ext.toolbarId, ext.title, _this.usefontStyle.toolbarExt+" "+ext.icon, "");
  2649. }
  2650. }
  2651. };
  2652. // 设置工具栏按钮
  2653. DTree.prototype.setToolbarDom = function(){
  2654. var _this = this;
  2655. var toolbarWay = _this.toolbarWay;
  2656. return {
  2657. setToolbarOption: function(toolbarId, title, classId, other){
  2658. if(toolbarWay == "contextmenu") {
  2659. return "<dd><a dtree-tool='"+toolbarId+"'><i class='"+classId+"'></i>&nbsp;"+other +title+"</a></dd>";
  2660. } else if(toolbarWay == "fixed" || toolbarWay == "follow") {
  2661. return "<a dtree-tool='"+toolbarId+"' title='"+other + title+"'><i class='"+classId+"'></i></a>";
  2662. }
  2663. },
  2664. setMenuToolbarOption: function(menubarId, title, classId, other){
  2665. var rootId = _this.obj[0].id;
  2666. if(toolbarWay == "contextmenu") {
  2667. return "<dd><a dtree-id='"+rootId+"' d-menu='"+menubarId+"'><i class='"+classId+"'></i>&nbsp;"+other +title+"</a></dd>";
  2668. } else if(toolbarWay == "fixed" || toolbarWay == "follow") {
  2669. return "<a dtree-id='"+rootId+"' d-menu='"+menubarId+"' title='"+other + title+"'><i class='"+classId+"'></i></a>";
  2670. }
  2671. },
  2672. setToolbarPlace: function(toolbarMenu){
  2673. if(toolbarWay == "contextmenu") {
  2674. if(toolbarMenu){
  2675. _this.obj.prevAll('div#dtree_toolbar_'+_this.obj[0].id).find('div.layui-nav-item>dl.layui-nav-child').html("");
  2676. for(var key in toolbarMenu){
  2677. _this.obj.prevAll('div#dtree_toolbar_'+_this.obj[0].id).find('div.layui-nav-item>dl.layui-nav-child').append(toolbarMenu[key]);
  2678. }
  2679. }
  2680. } else if(toolbarWay == "fixed" || toolbarWay == "follow") {
  2681. _this.obj.find("cite[data-leaf][dtree-disabled='false']").each(function(){
  2682. var $cite = $(this);
  2683. _this.dynamicToolbarDom($cite);
  2684. });
  2685. }
  2686. }
  2687. }
  2688. };
  2689. // 在节点后动态绑定fixed和follow条件的工具栏
  2690. DTree.prototype.dynamicToolbarDom = function($cite){
  2691. var _this = this;
  2692. var toolbarWay = _this.toolbarWay;
  2693. if($cite.next("em."+TOOLBAR_TOOL_EM).length == 0) {
  2694. var $div = $cite.parent("div");
  2695. var param = _this.getRequestParam(_this.getTempNodeParam($div));
  2696. var toolbarMenus = _this.toolbarFun.loadToolbarBefore(event.cloneObj(_this.toolbarMenu), param, $div);
  2697. var hideCls = (toolbarWay == "follow") ? NAV_HIDE : "";
  2698. var em = ["<em class='"+TOOLBAR_TOOL_EM+" "+hideCls+"'>"];
  2699. if(toolbarMenus){
  2700. for(var key in toolbarMenus){
  2701. em.push(toolbarMenus[key]);
  2702. }
  2703. }
  2704. em.push("</em>");
  2705. $cite.after(em.join(''));
  2706. }
  2707. }
  2708. // 隐藏toolbar
  2709. DTree.prototype.toolbarHide = function() {
  2710. var _this = this;
  2711. if(_this.toolbar && _this.toolbarWay == "contextmenu") {
  2712. var $toolBarDiv = _this.obj.prevAll('div#dtree_toolbar_'+_this.obj[0].id);
  2713. $toolBarDiv.find(".layui-nav-child").removeClass('layui-anim-fadein layui-show');
  2714. }
  2715. }
  2716. // toolbar内置方法
  2717. DTree.prototype.toolbarMethod = function(){
  2718. var _this = this;
  2719. return {
  2720. pulldown: function(obj){ // 展开当前点击节点的下面全部节点
  2721. if(!obj) return;
  2722. var $ulNode = obj;
  2723. // 遍历所有ul子节点
  2724. for (var i = 0; i < $ulNode.length; i++) {
  2725. // 获取当前节点的信息
  2726. var $ul = $($ulNode[i]),
  2727. $div = $ul.prev("div"),
  2728. $i_spread = _this.getNodeDom($div).fnode(),
  2729. $i_node = _this.getNodeDom($div).snode(),
  2730. $cite = _this.getNodeDom($div).cite(),
  2731. spread = $i_spread.data("spread"),
  2732. leaf = $cite.attr("data-leaf");
  2733. if (leaf == "leaf") { continue; } // 说明是叶子了,则继续循环下一个
  2734. if (spread == "open") {
  2735. // 说明该节点已经展开了,则进行子节点循环
  2736. } else {
  2737. if (_this.type=="load") { //是否全量加载
  2738. if (_this.cache) { //是否开启缓存
  2739. if ($ul.html()) {
  2740. $ul.addClass(NAV_SHOW);
  2741. } else { //加载节点
  2742. _this.getChild($div);
  2743. }
  2744. }else { //每次取新的数据
  2745. $ul.html("");
  2746. _this.getChild($div);
  2747. }
  2748. } else { // 全量加载
  2749. $ul.addClass(NAV_SHOW);
  2750. }
  2751. _this.operateIcon($i_spread, $i_node).open();
  2752. }
  2753. var $childUl = $ul.children("li").children("ul");
  2754. _this.toolbarMethod().pulldown($childUl);
  2755. }
  2756. },
  2757. pullup: function($li){ // 收缩当前点击节点的下面全部节点
  2758. $li.find("."+LI_NAV_CHILD).each(function(){
  2759. // 获取当前节点的信息
  2760. var $ul = $(this),
  2761. $div = $ul.prev("div"),
  2762. $i_spread = _this.getNodeDom($div).fnode(),
  2763. $i_node = _this.getNodeDom($div).snode(),
  2764. $cite = _this.getNodeDom($div).cite(),
  2765. spread = $i_spread.data("spread"),
  2766. leaf = $cite.attr("data-leaf");
  2767. $ul.removeClass(NAV_SHOW);
  2768. _this.operateIcon($i_spread, $i_node).close();
  2769. });
  2770. }
  2771. }
  2772. };
  2773. // toolbar监听方法
  2774. DTree.prototype.toolbarListener = function(tool, $div) {
  2775. var _this = this;
  2776. var $cite = $div.children("cite[data-leaf]"),
  2777. $ul = $div.next("ul"),
  2778. $p_li = $div.parent("li[data-index]"), //当前选中节点的顶级li节点
  2779. $p_ul = $p_li.parent("ul"), //当前选中节点的顶级li节点的父级ul
  2780. $p_div = $p_ul.prev("div"), //当前选中节点的顶级li节点的父级ul的前一个div
  2781. title = $cite.html();
  2782. switch (tool) {
  2783. case defaultTool.pulldown:
  2784. _this.toolbarMethod().pulldown($ul);
  2785. break;
  2786. case defaultTool.pullup:
  2787. _this.toolbarMethod().pullup($p_li);
  2788. break;
  2789. case defaultTool.addTool:
  2790. var content = _this.loadToolBar(title, defaultTool.addTool);
  2791. layer.open({
  2792. title: "新增"+_this.toolbarStyle.title,
  2793. type: 1,
  2794. area: _this.toolbarStyle.area,
  2795. content: content,
  2796. success: function(layero, index){
  2797. form.render();
  2798. form.on("submit(dtree_addNode_form)",function(data){
  2799. var data = data.field;
  2800. var parentId = $div.attr("data-id"),
  2801. id = $div.attr("data-id")+"_node_"+$ul[0].childNodes.length,
  2802. leaf = true,
  2803. checked = "0",
  2804. level = parseInt($p_li.attr("data-index"))+1;
  2805. // 创建子节点的DOM,添加子节点
  2806. var checkArr = [];
  2807. if (_this.checkArrLen > 0) {
  2808. for (var i = 0; i < _this.checkArrLen; i++) {
  2809. checkArr.push({"type":i,"checked":"0"});
  2810. }
  2811. }
  2812. $ul.append(_this.getLiItemDom(id, parentId, data.addNodeName, data.addNodeName, true, "", checkArr, level, false, false, false, "", "", "item"));
  2813. // 先将li节点隐藏
  2814. $ul.find("li[data-id='"+id+"']").hide();
  2815. // 重新赋值
  2816. var $addDiv = $ul.find("div[data-id='"+id+"']");
  2817. node = _this.getNodeParam($addDiv);
  2818. //获取组装后的requestNode,组合参数
  2819. var requestNode = _this.getRequestParam(node);
  2820. requestNode = $.extend(requestNode, data);
  2821. _this.temp = [id, $ul, $div, level];
  2822. // 用户自定义想做的事情
  2823. _this.toolbarFun.addTreeNode(requestNode, $div);
  2824. layer.close(index);
  2825. return false;
  2826. });
  2827. }
  2828. });
  2829. break;
  2830. case defaultTool.editTool:
  2831. var content = _this.loadToolBar(title, defaultTool.editTool);
  2832. layer.open({
  2833. title: "编辑"+_this.toolbarStyle.title,
  2834. type: 1,
  2835. area: _this.toolbarStyle.area,
  2836. content: content,
  2837. success: function(layero, index){
  2838. _this.toolbarFun.editTreeLoad(_this.getRequestParam(_this.getNodeParam($div)));
  2839. form.render();
  2840. form.on("submit(dtree_editNode_form)",function(data){
  2841. var data = data.field;
  2842. $cite.html(data.editNodeName);
  2843. node = _this.getNodeParam($div);
  2844. var requestNode = _this.getRequestParam(node);
  2845. requestNode = $.extend(requestNode, data);
  2846. _this.temp = [$cite, $div, title, $p_div];
  2847. _this.toolbarFun.editTreeNode(requestNode, $div);
  2848. layer.close(index);
  2849. });
  2850. }
  2851. });
  2852. break;
  2853. case defaultTool.delTool:
  2854. layer.confirm('确定要删除该'+_this.toolbarStyle.title+'?', {icon: 3, title:'删除'+_this.toolbarStyle.title}, function(index){
  2855. var node = _this.getNodeParam($div);
  2856. _this.temp = [$p_li, $p_div];
  2857. _this.toolbarFun.delTreeNode(_this.getRequestParam(_this.getNodeParam($div)), $div);
  2858. layer.close(index);
  2859. });
  2860. break;
  2861. default:
  2862. if(_this.toolbarExt.length > 0){
  2863. for(var i=0; i<_this.toolbarExt.length; i++){
  2864. var ext = _this.toolbarExt[i];
  2865. if (tool == ext.toolbarId){
  2866. ext.handler(_this.getRequestParam(_this.getNodeParam($div)), $div);
  2867. break;
  2868. }
  2869. }
  2870. }
  2871. break;
  2872. }
  2873. }
  2874. // 加载toolBar中的内容
  2875. DTree.prototype.loadToolBar = function(title, name){
  2876. var _this = this;
  2877. var toolbarShow = _this.toolbarShow;
  2878. var nodeBarContents = _this.toolbarBtn;
  2879. var html = "";
  2880. switch (name) {
  2881. case defaultTool.addTool:
  2882. var addNodeBarDef = [{"label": "当前选中", "name": "nodeTitle", "type": "text", "value": title, "defElem": "nowChoose", "readonly": true},
  2883. {"label": "新增"+_this.toolbarStyle.title, "name": "addNodeName", "type": "text", "value": "", "defElem": "nowChange", "verify": "required"},
  2884. {"type": "submit", "value": "确认添加", "defElem": "btn", "filter": "dtree_addNode_form"}];
  2885. //2. 用户自定义的节点内容
  2886. var addNodeBar = ['<div class="'+TOOLBAR_TOOL+'"><form class="layui-form layui-form-pane" lay-filter="dtree_addNode_form">'];
  2887. if(nodeBarContents != null && nodeBarContents.length > 0){
  2888. if(nodeBarContents[0] != null && nodeBarContents[0] != undefined && nodeBarContents[0].length > 0){
  2889. var addNodeBarContents = nodeBarContents[0];
  2890. // 1. 检查是否包含了now、newly、btn这三个默认项,将其他元素依次排列,将特殊元素至于栈顶
  2891. for(var i=0; i<addNodeBarContents.length; i++){
  2892. var defElem = addNodeBarContents[i].defElem;
  2893. if(defElem == "nowChoose") {
  2894. $.extend(addNodeBarDef[0], addNodeBarContents[i]);
  2895. } else if(defElem == "nowChange") {
  2896. $.extend(addNodeBarDef[1], addNodeBarContents[i]);
  2897. } else if(defElem == "btn") {
  2898. $.extend(addNodeBarDef[2], addNodeBarContents[i]);
  2899. } else {
  2900. addNodeBarDef.push(addNodeBarContents[i]);
  2901. }
  2902. }
  2903. }
  2904. }
  2905. // 2. 遍历生成全部表单标签
  2906. for(var j=0; j<addNodeBarDef.length; j++){
  2907. var type = addNodeBarDef[j].type;
  2908. if(!type){type = "text";}
  2909. switch (type) {
  2910. case "text":
  2911. addNodeBar.push(_this.loadToolBarDetail(addNodeBarDef[j]).text());
  2912. break;
  2913. case "textarea":
  2914. addNodeBar.push(_this.loadToolBarDetail(addNodeBarDef[j]).textarea());
  2915. break;
  2916. case "select":
  2917. addNodeBar.push(_this.loadToolBarDetail(addNodeBarDef[j]).select());
  2918. break;
  2919. case "hidden":
  2920. addNodeBar.push(_this.loadToolBarDetail(addNodeBarDef[j]).hidden());
  2921. break;
  2922. }
  2923. }
  2924. var addBtn = ['<div class="layui-form-item">', '<div class="layui-input-block" style="margin-left:0px;text-align:center;">'];
  2925. // 3.遍历生成按钮
  2926. for(var j=0; j<addNodeBarDef.length; j++){
  2927. var type = addNodeBarDef[j].type;
  2928. if(!type){type = "text";}
  2929. switch (type) {
  2930. case "submit":
  2931. addBtn.push(_this.loadToolBarDetail(addNodeBarDef[j]).submit());
  2932. break;
  2933. case "button":
  2934. addBtn.push(_this.loadToolBarDetail(addNodeBarDef[j]).button());
  2935. break;
  2936. case "reset":
  2937. addBtn.push(_this.loadToolBarDetail(addNodeBarDef[j]).reset());
  2938. break;
  2939. }
  2940. }
  2941. addBtn.push('</div></div>');
  2942. addNodeBar.push(addBtn.join(''));
  2943. addNodeBar.push('</form></div>');
  2944. html = addNodeBar.join('');
  2945. break;
  2946. case defaultTool.editTool:
  2947. var editNodeBarDef = [{"label": "当前选中", "name": "nodeTitle", "type": "text", "value": title, "defElem": "nowChoose", "readonly": true},
  2948. {"label": "编辑"+_this.toolbarStyle.title, "name": "editNodeName", "type": "text", "value": "", "defElem": "nowChange", "verify": "required"},
  2949. {"type": "submit", "value": "确认编辑", "defElem": "btn", "filter": "dtree_editNode_form"}];
  2950. var editNodeBar = ['<div class="'+TOOLBAR_TOOL+'"><form class="layui-form layui-form-pane" lay-filter="dtree_editNode_form">'];
  2951. //2. 用户自定义的节点内容
  2952. if(nodeBarContents != null && nodeBarContents.length > 0){
  2953. if(nodeBarContents[1] != null && nodeBarContents[1] != undefined && nodeBarContents[1].length > 0){
  2954. var editNodeBarContents = nodeBarContents[1];
  2955. // 1. 检查是否包含了now、newly、btn这三个默认项,将其他元素依次排列,将特殊元素至于栈顶
  2956. for(var i=0; i<editNodeBarContents.length; i++){
  2957. var defElem = editNodeBarContents[i].defElem;
  2958. if(defElem == "nowChoose") {
  2959. $.extend(editNodeBarDef[0], editNodeBarContents[i]);
  2960. } else if(defElem == "nowChange") {
  2961. $.extend(editNodeBarDef[1], editNodeBarContents[i]);
  2962. } else if(defElem == "btn") {
  2963. $.extend(editNodeBarDef[2], editNodeBarContents[i]);
  2964. } else {
  2965. editNodeBarDef.push(editNodeBarContents[i]);
  2966. }
  2967. }
  2968. }
  2969. }
  2970. // 2. 遍历生成全部表单标签
  2971. for(var j=0; j<editNodeBarDef.length; j++){
  2972. var type = editNodeBarDef[j].type;
  2973. if(!type){type = "text";}
  2974. switch (type) {
  2975. case "text":
  2976. editNodeBar.push(_this.loadToolBarDetail(editNodeBarDef[j]).text());
  2977. break;
  2978. case "textarea":
  2979. editNodeBar.push(_this.loadToolBarDetail(editNodeBarDef[j]).textarea());
  2980. break;
  2981. case "select":
  2982. editNodeBar.push(_this.loadToolBarDetail(editNodeBarDef[j]).select());
  2983. break;
  2984. case "hidden":
  2985. editNodeBar.push(_this.loadToolBarDetail(editNodeBarDef[j]).hidden());
  2986. break;
  2987. }
  2988. }
  2989. var editBtn = ['<div class="layui-form-item">', '<div class="layui-input-block" style="margin-left:0px;text-align:center;">'];
  2990. // 3.遍历生成按钮
  2991. for(var j=0; j<editNodeBarDef.length; j++){
  2992. var type = editNodeBarDef[j].type;
  2993. if(!type){type = "text";}
  2994. switch (type) {
  2995. case "submit":
  2996. editBtn.push(_this.loadToolBarDetail(editNodeBarDef[j]).submit());
  2997. break;
  2998. case "button":
  2999. editBtn.push(_this.loadToolBarDetail(editNodeBarDef[j]).button());
  3000. break;
  3001. case "reset":
  3002. editBtn.push(_this.loadToolBarDetail(editNodeBarDef[j]).reset());
  3003. break;
  3004. }
  3005. }
  3006. editBtn.push('</div></div>');
  3007. editNodeBar.push(editBtn.join(''));
  3008. editNodeBar.push('</form></div>');
  3009. html = editNodeBar.join('');
  3010. break;
  3011. }
  3012. return html;
  3013. };
  3014. // 获取toolbar详细的标签信息
  3015. DTree.prototype.loadToolBarDetail = function(nodeBarContents){
  3016. var _this = this;
  3017. var readonly = (typeof (nodeBarContents.readonly) === "boolean") ? nodeBarContents.readonly : false;
  3018. var disabled = (typeof (nodeBarContents.disabled) === "boolean") ? nodeBarContents.disabled : false;
  3019. var id = nodeBarContents.id ? nodeBarContents.id : "";
  3020. var name = nodeBarContents.name ? nodeBarContents.name : "";
  3021. var val = nodeBarContents.value ? nodeBarContents.value : "";
  3022. var verify = nodeBarContents.verify ? nodeBarContents.verify : "";
  3023. var placeholder = nodeBarContents.placeholder ? nodeBarContents.placeholder : val;
  3024. return{
  3025. text: function(){
  3026. return ['<div class="layui-form-item">',
  3027. '<label class="layui-form-label" title="'+nodeBarContents.label+'">'+nodeBarContents.label+':</label>',
  3028. '<div class="layui-input-block f-input-par">',
  3029. '<input type="text" class="layui-input f-input" value="'+val+'" placeholder="'+placeholder+'" lay-verify="'+verify+'" ',
  3030. (id != "" ? 'id="'+id+'" ' : ''),
  3031. (name != "" ? 'name="'+name+'" ' : ''),
  3032. (readonly ? 'readonly ' : ''),
  3033. (disabled ? 'disabled ' : ''),
  3034. '/>',
  3035. '</div>',
  3036. '</div>'].join('');
  3037. },
  3038. textarea: function(){
  3039. return ['<div class="layui-form-item layui-form-text">',
  3040. '<label class="layui-form-label" title="'+nodeBarContents.label+'">'+nodeBarContents.label+':</label>',
  3041. '<div class="layui-input-block f-input-par">',
  3042. '<textarea class="layui-textarea f-input" value="'+val+'" placeholder="'+placeholder+'" lay-verify="'+verify+'" ',
  3043. (id != "" ? 'id="'+id+'" ' : ''),
  3044. (name != "" ? 'name="'+name+'" ' : ''),
  3045. (readonly ? 'readonly ' : ''),
  3046. (disabled ? 'disabled ' : ''),
  3047. '>'+val+'</textarea>',
  3048. '</div>',
  3049. '</div>'].join('');
  3050. },
  3051. hidden: function(){
  3052. return ['<input type="hidden" class="layui-input f-input" value="'+val+'" lay-verify="'+verify+'" ',
  3053. (id != "" ? 'id="'+id+'" ' : ''),
  3054. (name != "" ? 'name="'+name+'" ' : ''),
  3055. (readonly ? 'readonly ' : ''),
  3056. (disabled ? 'disabled ' : ''),
  3057. '/>'].join('');
  3058. },
  3059. select: function(){
  3060. var optionsData = (typeof nodeBarContents.optionsData === 'object') ? nodeBarContents.optionsData : nodeBarContents.optionsData();
  3061. var options = "";
  3062. for(var key in optionsData){
  3063. if(val == optionsData[key]){
  3064. options += "<option value='"+key+"' selected>"+optionsData[key]+"</option>";
  3065. } else {
  3066. options += "<option value='"+key+"'>"+optionsData[key]+"</option>";
  3067. }
  3068. }
  3069. return ['<div class="layui-form-item">',
  3070. '<label class="layui-form-label" title="'+nodeBarContents.label+'">'+nodeBarContents.label+':</label>',
  3071. '<div class="layui-input-block f-input-par">',
  3072. '<select lay-verify="'+verify+'" ',
  3073. (id != "" ? 'id="'+id+'" ' : ''),
  3074. (name != "" ? 'name="'+name+'" ' : ''),
  3075. (readonly ? 'readonly ' : ''),
  3076. (disabled ? 'disabled ' : ''),
  3077. '>',
  3078. options,
  3079. '</select>', '</div>', '</div>'].join('');
  3080. },
  3081. submit: function(){
  3082. var filter = nodeBarContents.filter;
  3083. return ['<button type="button" class="layui-btn layui-btn-normal btn-w100" lay-submit lay-filter="'+filter+'" ',
  3084. (id != "" ? 'id="'+id+'" ' : ''),
  3085. (name != "" ? 'name="'+name+'" ' : ''),
  3086. '>'+val+'</button>'].join('');
  3087. },
  3088. button: function(){
  3089. return ['<button type="button" class="layui-btn layui-btn-normal btn-w100" ',
  3090. (id != "" ? 'id="'+id+'" ' : ''),
  3091. (name != "" ? 'name="'+name+'" ' : ''),
  3092. ' >'+val+'</button>'].join('');
  3093. },
  3094. reset: function(){
  3095. return ['<button type="reset" class="layui-btn layui-btn-primary btn-w100" ',
  3096. (id != "" ? 'id="'+id+'" ' : ''),
  3097. (name != "" ? 'name="'+name+'" ' : ''),
  3098. '>'+val+'</button>'].join('');
  3099. }
  3100. }
  3101. };
  3102. // 新增节点后改变节点内容
  3103. DTree.prototype.changeTreeNodeAdd = function(returnID){
  3104. var _this = this;
  3105. var temp = _this.temp;
  3106. var id = temp[0], $ul = temp[1], $div = temp[2], level = temp[3];
  3107. var flag = false;
  3108. if(returnID){
  3109. var $thisDiv = _this.obj.find("[data-id='"+id+"']");
  3110. if(typeof returnID === "object"){
  3111. // 如果是JSON格式数据,则将当前DIV删除,重新建造DIV
  3112. $thisDiv.remove();
  3113. var parseData = _this.parseData(returnID);
  3114. if(parseData.treeId()){
  3115. $ul.append(_this.getLiItemDom(parseData.treeId(), parseData.parentId(), parseData.title(), parseData.fmtTitle(), parseData.last(0), parseData.iconClass(), parseData.checkArr(), level, parseData.spread(), parseData.disabled(), parseData.hide(), parseData.basicData(), parseData.recordData(), "item"));
  3116. // 建造完毕后,选中该DIV
  3117. $thisDiv = $ul.find("div[data-id='"+parseData.treeId()+"']");
  3118. _this.setNodeParam($thisDiv)
  3119. } else {
  3120. layer.msg("添加失败,节点ID为undefined!",{icon:5});
  3121. // 将li节点删除
  3122. $ul.find("li[data-id='"+id+"']").remove();
  3123. // 重新赋值
  3124. _this.setNodeParam($div);
  3125. // 临时变量制空
  3126. _this.temp = [];
  3127. return ;
  3128. }
  3129. }else if(returnID == 'refresh'){
  3130. // 如果是设置为refresh参数,则向后台发送请求,获取新增节点下的真实参数,局部刷新树。
  3131. flag = true;
  3132. } else if(typeof returnID === "string" || typeof returnID === 'number' || returnID == true){
  3133. $thisDiv.attr("data-id", returnID);
  3134. // 将li节点展示
  3135. $ul.find("li[data-id='"+returnID+"']").show();
  3136. _this.setNodeParam($thisDiv)
  3137. }
  3138. // 判断当前点击的节点是否是最后一级节点,如果是,则需要修改节点的样式
  3139. var $icon_i = $div.find("i[data-spread]");
  3140. if ($icon_i.eq(0).data("spread") == "last") {
  3141. _this.operateIcon($icon_i.eq(0), $icon_i.eq(1)).openWithDot();
  3142. } else { //如果不是,也要修改节点样式
  3143. _this.operateIcon($icon_i.eq(0), $icon_i.eq(1)).open();
  3144. }
  3145. $ul.addClass(NAV_SHOW); //展开UL
  3146. _this.accordionUL($ul);
  3147. if(flag) {
  3148. _this.getChild($div);
  3149. } else {
  3150. // 这种情况下需要在新增节点后对节点新增工具栏
  3151. if(_this.toolbar && _this.toolbarWay != 'contextmenu') {
  3152. _this.dynamicToolbarDom($thisDiv.find("cite[data-leaf]"));
  3153. }
  3154. }
  3155. } else {
  3156. // 将li节点删除
  3157. $ul.find("li[data-id='"+id+"']").remove();
  3158. // 重新赋值
  3159. _this.setNodeParam($div);
  3160. }
  3161. _this.temp = []; // 临时变量制空
  3162. };
  3163. // 编辑页打开后显示编辑页内容
  3164. DTree.prototype.changeTreeNodeDone = function(param){
  3165. var _this = this;
  3166. form.val('dtree_editNode_form', param);
  3167. form.render();
  3168. };
  3169. // 修改节点后改变节点内容
  3170. DTree.prototype.changeTreeNodeEdit = function(returnID){
  3171. var _this = this;
  3172. var temp = _this.temp;
  3173. var $cite = temp[0], $div = temp[1], title = temp[2], $p_div = temp[3];
  3174. var flag = false;
  3175. if(returnID){
  3176. if(typeof returnID === "object"){
  3177. var parseData = _this.parseData(data);
  3178. if(parseData.treeId()){
  3179. var replaceDom = _this.replaceDom($div, parseData.treeId(), parseData.last(0), parseData.spread(), parseData.disabled(), parseData.hide());
  3180. replaceDom.node(parseData.iconClass());
  3181. replaceDom.checkbox(parseData.checkArr());
  3182. replaceDom.text(parseData.title());
  3183. replaceDom.ul();
  3184. replaceDom.basicData(parseData.basicData());
  3185. replaceDom.recordData(parseData.recordData());
  3186. _this.setNodeParam($div);
  3187. } else {
  3188. layer.msg("编辑失败,节点ID为undefined!",{icon:5});
  3189. // 重新赋值
  3190. _this.setNodeParam($div);
  3191. }
  3192. }
  3193. } else {
  3194. $cite.html(title);
  3195. _this.getNodeParam($div);
  3196. }
  3197. _this.temp = []; // 临时变量制空
  3198. };
  3199. // 删除节点后改变节点内容
  3200. DTree.prototype.changeTreeNodeDel = function(flag){
  3201. var _this = this;
  3202. var temp = _this.temp;
  3203. var $p_li = temp[0],
  3204. $p_ul = $p_li.parent("ul"),
  3205. $p_div = temp[1];
  3206. if(flag){
  3207. $p_li.remove();
  3208. // 判断父级ul中是否还存在li,如果不存在,则需要修改节点的样式
  3209. if($p_ul.children("li").length == 0){
  3210. var $icon_i = $p_div.find("i[data-spread]");
  3211. _this.operateIcon($icon_i.eq(0), $icon_i.eq(1)).closeWithDot();
  3212. }
  3213. _this.initNodeParam();
  3214. }
  3215. _this.temp = []; // 临时变量制空
  3216. };
  3217. /******************** iframe区域 ********************/
  3218. // 加载iframe
  3219. DTree.prototype.loadIframe = function($div, iframeParam) {
  3220. var _this = this;
  3221. var $cite = _this.getNodeDom($div).cite();
  3222. if (!_this.useIframe) { // 启用iframe
  3223. return false;
  3224. }
  3225. var iframeElem = _this.iframe.iframeElem,
  3226. iframeUrl = _this.iframe.iframeUrl,
  3227. iframeLoad = _this.iframe.iframeLoad;
  3228. var flag = iframeLoad == "leaf" ? (($cite.attr("data-leaf") == "leaf") ? true : false) : true;
  3229. if (flag) {
  3230. if ($(iframeElem).length > 0) { //iframe存在
  3231. if (!iframeUrl) {
  3232. layer.msg("数据请求异常,iframeUrl参数未指定", {icon:5});
  3233. return false;
  3234. }
  3235. var param = AjaxHelper.serialize(iframeParam);
  3236. if(iframeUrl.indexOf("?")> -1){
  3237. param = "&"+param.substring(1, param.length);
  3238. }
  3239. var url = iframeUrl + param;
  3240. $(iframeElem).attr("src", url);
  3241. } else {
  3242. layer.msg("iframe绑定异常,请确认页面中是否有iframe页对应的容器", {icon:5});
  3243. return false;
  3244. }
  3245. }
  3246. return flag;
  3247. };
  3248. // 获取传递出去的参数,根据iframe.iframeDefaultRequest、iframe.iframeRequest和node拼出发出请求的参数
  3249. DTree.prototype.getIframeRequestParam = function(nodes){
  3250. var _this = this;
  3251. var request = _this.iframe.iframeRequest,
  3252. defaultRequestNames = _this.iframe.iframeDefaultRequest,
  3253. node = nodes || _this.node,
  3254. requestParam = {};
  3255. // 先拼用户自定义的,在拼树生成的,这样的话用户可以自定义当树未生成时的节点的初始值
  3256. for ( var key in request) {
  3257. requestParam[key] = request[key];
  3258. }
  3259. for ( var key in defaultRequestNames) {
  3260. var paramName = defaultRequestNames[key];
  3261. var paramValue = node[key];
  3262. if(typeof paramValue === "boolean"){
  3263. requestParam[paramName] = paramValue;
  3264. }else {
  3265. if(paramValue){
  3266. requestParam[paramName] = paramValue;
  3267. }
  3268. }
  3269. }
  3270. // 解决传递中文的乱码问题
  3271. var reg = /[\u4E00-\u9FA5\uF900-\uFA2D]/; //正则匹配中文
  3272. for(var key in requestParam){
  3273. if(reg.test(requestParam[key])) {
  3274. var str = requestParam[key];
  3275. requestParam[key] = encodeURI(encodeURI(str));
  3276. }
  3277. }
  3278. return requestParam;
  3279. };
  3280. /******************** 数据回调区域 ********************/
  3281. // 根据具体的id获取基于当前id的div以及对应的其他dom元素
  3282. DTree.prototype.getNodeDom = function(id){
  3283. var _this = this;
  3284. // 获取当前div,如果id就是一个dom,则就是这个,如果不是则进行选择。如果选不中则为null
  3285. var $div = (typeof id === 'object') ? id : (_this.obj.find("div[dtree-click='"+eventName.itemNodeClick+"'][data-id='"+id+"']").length == 0) ? null : _this.obj.find("div[dtree-click='"+eventName.itemNodeClick+"'][data-id='"+id+"']");
  3286. return {
  3287. div: function(){ // 获取当前div
  3288. return $div;
  3289. },
  3290. fnode: function(){ // 获取一级图标元素
  3291. return ($div == null) ? null : $div.find("i[data-spread]").eq(0);
  3292. },
  3293. snode: function(){ // 获取二级图标元素
  3294. return ($div == null) ? null : $div.find("i[data-spread]").eq(1);
  3295. },
  3296. checkbox: function(){ // 获取复选框元素
  3297. return ($div == null) ? null : $div.find("i[data-par]");
  3298. },
  3299. cite: function(){ // 获取cite元素
  3300. return ($div == null) ? null : $div.find("cite[data-leaf]");
  3301. },
  3302. nextUl: function(){ // 获取相邻的ul元素
  3303. return ($div == null) ? null : $div.next("ul");
  3304. },
  3305. parentLi: function(){ // 获取父级li元素
  3306. return ($div == null) ? null : $div.parent("li");
  3307. },
  3308. parentUl: function(){ // 获取基于当前$div的上级$ul
  3309. return ($div == null) ? null : $div.parent("li").parent("ul");
  3310. },
  3311. parentDiv: function(){ // 获取基于当前$div的上级$div
  3312. return ($div == null) ? null : $div.parent("li").parent("ul").prev("div");
  3313. },
  3314. nowDiv: function(){ // 获取当前选中节点,没有则返回null
  3315. return (_this.obj.find("div[dtree-click='"+eventName.itemNodeClick+"'][data-id]").parent().find("."+NAV_THIS).length == 0) ? null : _this.obj.find("div[dtree-click='"+eventName.itemNodeClick+"'][data-id]").parent().find("."+NAV_THIS);
  3316. },
  3317. nowOrRootDiv: function(){ // 获取当前选中节点,没有则返回根节点下的第一个div
  3318. return (_this.obj.find("div[dtree-click='"+eventName.itemNodeClick+"'][data-id]").parent().find("."+NAV_THIS).length == 0) ? _this.obj.children("li").eq(0).children("div").eq(0) : _this.obj.find("div[dtree-click='"+eventName.itemNodeClick+"'][data-id]").parent().find("."+NAV_THIS);
  3319. },
  3320. nowOrRootUl: function(){ // 获取当前选中节点下一个UL 或根节点。为了将新节点放入ul下
  3321. return (_this.obj.find("div[dtree-click='"+eventName.itemNodeClick+"'][data-id]").parent().find("."+NAV_THIS).length == 0) ? _this.obj : _this.obj.find("div[dtree-click='"+eventName.itemNodeClick+"'][data-id]").parent().find("."+NAV_THIS).next("ul");
  3322. }
  3323. }
  3324. };
  3325. // 获取当前选中节点下一个UL 或根节点。为了将新节点放入ul下
  3326. DTree.prototype.getNowNodeUl = function() {
  3327. var _this = this;
  3328. return _this.getNodeDom().nowOrRootUl();
  3329. };
  3330. // 获取当前选中节点 或第一个根节点。
  3331. DTree.prototype.getNowNode = function() {
  3332. var _this = this;
  3333. return _this.getNodeDom().nowOrRootDiv();
  3334. };
  3335. // 获取当前选中节点 无则返回null。
  3336. DTree.prototype.getNowNodeOrNull = function() {
  3337. var _this = this;
  3338. return _this.getNodeDom().nowDiv();
  3339. };
  3340. // 获取指定节点。
  3341. DTree.prototype.getNode = function(id) {
  3342. var _this = this;
  3343. return _this.getNodeDom(id).div();
  3344. };
  3345. // 设置当前选中节点的全部参数
  3346. DTree.prototype.setNodeParam = function($div) {
  3347. var _this = this;
  3348. _this.node.nodeId = $div.attr("data-id");
  3349. _this.node.parentId = _this.getNodeDom($div).parentLi().attr("data-pid");
  3350. _this.node.context = (typeof _this.formatter.title === 'function') ? _this.getNodeDom($div).cite().attr("data-title") : _this.getNodeDom($div).cite().text();
  3351. _this.node.leaf = _this.getNodeDom($div).cite().attr("data-leaf") == "leaf" ? true : false;
  3352. _this.node.level = _this.getNodeDom($div).parentLi().attr("data-index");
  3353. _this.node.spread = _this.getNodeDom($div).fnode().data("spread") == "open" ? true : false;
  3354. _this.node.basicData = $div.attr("data-basic")
  3355. _this.node.recordData = $div.attr("data-record");
  3356. if (_this.getNodeDom($div).checkbox()) {
  3357. var dataTypes = "", checkeds = "", initcheckeds = "";
  3358. _this.getNodeDom($div).checkbox().each(function(){
  3359. dataTypes += $(this).attr("data-type") + ",";
  3360. checkeds += $(this).attr("data-checked") + ",";
  3361. initcheckeds += $(this).attr("data-initchecked") + ",";
  3362. });
  3363. dataTypes = dataTypes.substring(0, dataTypes.length-1);
  3364. checkeds = checkeds.substring(0, checkeds.length-1);
  3365. initcheckeds = initcheckeds.substring(0, initcheckeds.length-1);
  3366. _this.node.dataType = dataTypes;
  3367. _this.node.checked = checkeds;
  3368. _this.node.initchecked = initcheckeds;
  3369. }
  3370. };
  3371. // 获取当前选中节点的全部参数
  3372. DTree.prototype.getNodeParam = function($div) {
  3373. var _this = this;
  3374. if ($div) {
  3375. _this.setNodeParam($div);
  3376. } else {
  3377. if(_this.obj.find("div[data-id]").parent().find("."+NAV_THIS).length == 0){
  3378. _this.initNodeParam();
  3379. }
  3380. }
  3381. return this.node;
  3382. };
  3383. // 获取一个临时的node参数
  3384. DTree.prototype.getTempNodeParam = function($div) {
  3385. var _this = this;
  3386. var temp_node = {};
  3387. temp_node.nodeId = $div.attr("data-id");
  3388. temp_node.parentId = _this.getNodeDom($div).parentLi().attr("data-pid");
  3389. temp_node.context = (typeof _this.formatter.title === 'function') ? _this.getNodeDom($div).cite().attr("data-title") : _this.getNodeDom($div).cite().text();
  3390. temp_node.leaf = _this.getNodeDom($div).cite().attr("data-leaf") == "leaf" ? true : false;
  3391. temp_node.level = _this.getNodeDom($div).parentLi().attr("data-index");
  3392. temp_node.spread = _this.getNodeDom($div).fnode().data("spread") == "open" ? true : false;
  3393. temp_node.basicData = $div.attr("data-basic")
  3394. temp_node.recordData = $div.attr("data-record");
  3395. if (_this.getNodeDom($div).checkbox()) {
  3396. var dataTypes = "", checkeds = "", initcheckeds = "";
  3397. _this.getNodeDom($div).checkbox().each(function(){
  3398. dataTypes += $(this).attr("data-type") + ",";
  3399. checkeds += $(this).attr("data-checked") + ",";
  3400. initcheckeds += $(this).attr("data-initchecked") + ",";
  3401. });
  3402. dataTypes = dataTypes.substring(0, dataTypes.length-1);
  3403. checkeds = checkeds.substring(0, checkeds.length-1);
  3404. initcheckeds = initcheckeds.substring(0, initcheckeds.length-1);
  3405. temp_node.dataType = dataTypes;
  3406. temp_node.checked = checkeds;
  3407. temp_node.initchecked = initcheckeds;
  3408. }
  3409. return temp_node;
  3410. };
  3411. // 重置参数
  3412. DTree.prototype.initNodeParam = function(){
  3413. var _this = this;
  3414. _this.node.nodeId = "";
  3415. _this.node.parentId = "";
  3416. _this.node.context = "";
  3417. _this.node.leaf = "";
  3418. _this.node.level = "";
  3419. _this.node.spread = "";
  3420. _this.node.dataType = "";
  3421. _this.node.checked = "";
  3422. _this.node.initchecked = "";
  3423. _this.node.basicData = "";
  3424. _this.node.recordData = "";
  3425. };
  3426. // 获取传递出去的参数,根据defaultRequest、request和node拼出发出请求的参数
  3427. DTree.prototype.getRequestParam = function(nodes){
  3428. var _this = this;
  3429. var request = _this.request,
  3430. defaultRequestNames = _this.defaultRequest,
  3431. node = nodes || _this.node,
  3432. requestParam = {};
  3433. // 先拼用户自定义的,在拼树生成的,这样的话用户可以自定义当树未生成时的节点的初始值
  3434. for ( var key in request) {
  3435. requestParam[key] = request[key];
  3436. }
  3437. for ( var key in defaultRequestNames) {
  3438. var paramName = defaultRequestNames[key];
  3439. var paramValue = node[key];
  3440. if(typeof paramValue === "boolean"){
  3441. requestParam[paramName] = paramValue;
  3442. }else {
  3443. if(paramValue){
  3444. requestParam[paramName] = paramValue;
  3445. }
  3446. }
  3447. }
  3448. return requestParam;
  3449. };
  3450. // 获取filterParam过滤后的requestParam
  3451. DTree.prototype.getFilterRequestParam = function(requestParam){
  3452. var _this = this;
  3453. var filterRequest = _this.filterRequest;
  3454. return event.cloneObj(requestParam, filterRequest);
  3455. };
  3456. // 获取当前选中值
  3457. DTree.prototype.getNowParam = function(){
  3458. var _this = this;
  3459. return _this.getRequestParam(_this.getNodeParam());
  3460. };
  3461. // 获取指定节点选中值
  3462. DTree.prototype.getParam = function(id){
  3463. var _this = this;
  3464. // 获取当前div,如果id就是一个dom,则就是这个,如果不是则进行选择。如果选不中则为null
  3465. var $div = (typeof id === 'object') ? id : (_this.obj.find("div[dtree-click='"+eventName.itemNodeClick+"'][data-id='"+id+"']").length == 0) ? null : _this.obj.find("div[dtree-click='"+eventName.itemNodeClick+"'][data-id='"+id+"']");
  3466. if($div != null){ return _this.callbackData().node(_this.getTempNodeParam($div)); } else { return {}; }
  3467. };
  3468. // 获取参数的上级节点
  3469. DTree.prototype.getParentParam = function(id){
  3470. var _this = this;
  3471. // 获取当前div,如果id就是一个dom,则就是这个,如果不是则进行选择。如果选不中则为null
  3472. var $div = (typeof id === 'object') ? id : (_this.obj.find("div[dtree-click='"+eventName.itemNodeClick+"'][data-id='"+id+"']").length == 0) ? null : _this.obj.find("div[dtree-click='"+eventName.itemNodeClick+"'][data-id='"+id+"']");
  3473. if($div != null){ return _this.callbackData().parentNode($div); } else { return {}; }
  3474. };
  3475. // 获取参数的全部上级节点
  3476. DTree.prototype.getAllParentParam = function(id){
  3477. var _this = this;
  3478. // 获取当前div,如果id就是一个dom,则就是这个,如果不是则进行选择。如果选不中则为null
  3479. var $div = (typeof id === 'object') ? id : (_this.obj.find("div[dtree-click='"+eventName.itemNodeClick+"'][data-id='"+id+"']").length == 0) ? null : _this.obj.find("div[dtree-click='"+eventName.itemNodeClick+"'][data-id='"+id+"']");
  3480. var arr = [];
  3481. if($div != null){
  3482. var level = _this.getTempNodeParam($div).level;
  3483. for(var i=1; i<level; i++){ // 从1开始遍历,如果level等于1说明是根节点
  3484. arr.unshift(_this.callbackData().parentNode($div));
  3485. $div = _this.getNodeDom($div).parentDiv();
  3486. }
  3487. }
  3488. return arr;
  3489. };
  3490. // 获取参数的下级节点
  3491. DTree.prototype.getChildParam = function(id){
  3492. var _this = this;
  3493. // 获取当前div,如果id就是一个dom,则就是这个,如果不是则进行选择。如果选不中则为null
  3494. var $div = (typeof id === 'object') ? id : (_this.obj.find("div[dtree-click='"+eventName.itemNodeClick+"'][data-id='"+id+"']").length == 0) ? null : _this.obj.find("div[dtree-click='"+eventName.itemNodeClick+"'][data-id='"+id+"']");
  3495. if($div != null){ return _this.callbackData().childNode($div); } else { return []; }
  3496. };
  3497. // 获取回调数据
  3498. DTree.prototype.callbackData = function(){
  3499. var _this = this;
  3500. return {
  3501. dom: function($dom){ // 获取dom
  3502. return $dom;
  3503. },
  3504. node: function(node){ // 获取当前节点值
  3505. return _this.getRequestParam(node);
  3506. },
  3507. childNode: function($div){ // 获取下级节点值
  3508. var $childDivs = $div.next("ul").find("li."+LI_NAV_ITEM+" div."+LI_DIV_ITEM);
  3509. var childNode = [];
  3510. if($childDivs && $childDivs.length > 0){
  3511. $childDivs.each(function(){
  3512. var $cDiv = $(this);
  3513. childNode.push(_this.getRequestParam(_this.getTempNodeParam($cDiv)));
  3514. });
  3515. }
  3516. return childNode;
  3517. },
  3518. parentNode: function($div){ // 获取上级节点值
  3519. var pId = _this.getNodeDom($div).parentLi().attr("data-pid");
  3520. var $pdiv = _this.obj.find("div[data-id='"+pId+"']");
  3521. if($pdiv.length > 0) {return _this.getRequestParam(_this.getTempNodeParam($pdiv));} else {return {};}
  3522. }
  3523. }
  3524. };
  3525. /******************** 事件回调区域 ********************/
  3526. // 绑定浏览器事件
  3527. DTree.prototype.bindBrowserEvent = function(){
  3528. var _this = this;
  3529. // 绑定文件夹展开/收缩的图标的点击事件,点击时给当前节点的div添加选中class
  3530. _this.obj.on("click", "i[data-spread]", function(event) {
  3531. event.stopPropagation();
  3532. var $i = $(this),
  3533. $div = $i.parent("div"),
  3534. node = _this.getNodeParam($div);
  3535. _this.toolbarHide();
  3536. _this.navThis($div);
  3537. _this.clickSpread($div); // 展开或隐藏节点
  3538. // 树状态改变后,用户自定义想做的事情
  3539. layui.event.call(this, MOD_NAME, "changeTree("+$(_this.obj)[0].id+")", {
  3540. dom: _this.callbackData().dom($i),
  3541. param: _this.callbackData().node(node),
  3542. show: _this.callbackData().dom($i).data("spread") == "open" ? true : false
  3543. });
  3544. });
  3545. // 绑定所有子节点div的单击事件,点击时触发加载iframe或用户自定义想做的事情
  3546. _this.obj.on("click", "div[dtree-click='"+eventName.itemNodeClick+"'][dtree-disabled='false']", function(event) {
  3547. event.stopPropagation();
  3548. var $div = $(this),
  3549. $cite = $div.find("cite"),
  3550. node = _this.getNodeParam($div);
  3551. _this.toolbarHide();
  3552. _this.navThis($div);
  3553. if (_this.useIframe) {
  3554. var iframeParam = _this.getFilterRequestParam(_this.getIframeRequestParam(node));
  3555. var flag = _this.loadIframe($div, iframeParam); // 加载iframe
  3556. if (flag) {
  3557. // iframe加载完毕后,用户自定义想做的事情
  3558. _this.iframeFun.iframeDone(iframeParam);
  3559. layui.event.call(this, MOD_NAME, "iframeDone("+$(_this.obj)[0].id+")", {
  3560. "iframeParam": iframeParam,
  3561. dom: _this.callbackData().dom($div)
  3562. });
  3563. }
  3564. } else {
  3565. // 单击事件执行完毕后,用户自定义想做的事情
  3566. layui.event.call(this, MOD_NAME, "node("+$(_this.obj)[0].id+")", {
  3567. param: _this.callbackData().node(node),
  3568. childParams: _this.callbackData().childNode($div),
  3569. parentParam: _this.callbackData().parentNode($div),
  3570. dom: _this.callbackData().dom($div)
  3571. });
  3572. }
  3573. });
  3574. // 绑定所有子节点div的双击事件,暴露on给用户自定义
  3575. _this.obj.on("dblclick", "div[dtree-click='"+eventName.itemNodeClick+"'][dtree-disabled='false']", function(event) {
  3576. event.stopPropagation();
  3577. var $div = $(this),
  3578. $cite = $div.find("cite"),
  3579. node = _this.getNodeParam($div);
  3580. _this.toolbarHide();
  3581. _this.navThis($div);
  3582. // 双击事件执行完毕后,用户自定义想做的事情
  3583. layui.event.call(this, MOD_NAME, "nodedblclick("+$(_this.obj)[0].id+")", {
  3584. param: _this.callbackData().node(node),
  3585. childParams: _this.callbackData().childNode($div),
  3586. parentParam: _this.callbackData().parentNode($div),
  3587. dom: _this.callbackData().dom($div)
  3588. });
  3589. });
  3590. if(_this.checkbar) {
  3591. // 绑定cheboxbar的节点复选框
  3592. _this.obj.on("click", "i[dtree-click='"+eventName.checkNodeClick+"'][dtree-disabled='false']", function(event) {
  3593. _this.toolbarHide();
  3594. var $i = $(this),
  3595. $div = $i.closest("div[dtree-click='"+eventName.itemNodeClick+"']"),
  3596. node = _this.getNodeParam($div);
  3597. // 复选框选中前的回调
  3598. var flag = _this.checkbarFun.chooseBefore($i, _this.getRequestParam(node));
  3599. _this.temp = [$i];
  3600. if(flag){_this.changeCheck();}
  3601. event.stopPropagation();
  3602. });
  3603. }
  3604. if(_this.menubar) {
  3605. // 绑定menubar的点击事件
  3606. _this.obj.prevAll('div#dtree_menubar_'+_this.obj[0].id).on("click", "button[d-menu]", function(event) {
  3607. event.stopPropagation();
  3608. _this.toolbarHide();
  3609. _this.menubarListener($(this).attr("d-menu"), "group");
  3610. });
  3611. // 绑定menubar的点击事件
  3612. _this.obj.prevAll('div#dtree_toolbar_'+_this.obj[0].id).on("click", "a[d-menu]", function(event) {
  3613. event.stopPropagation();
  3614. _this.toolbarHide();
  3615. _this.menubarListener($(this).attr("d-menu"), "toolbar");
  3616. });
  3617. // 绑定menubar的点击按钮事件
  3618. _this.obj.closest('body').find("*[dtree-id='"+_this.obj[0].id+"'][dtree-menu]").on("click", function(event) {
  3619. event.stopPropagation();
  3620. _this.toolbarHide();
  3621. _this.menubarListener($(this).attr("dtree-menu"), "freedom");
  3622. });
  3623. }
  3624. if(_this.toolbar) {
  3625. if(_this.toolbarWay == "contextmenu") {
  3626. //绑定所有子节点div的右键点击事件,用于显示toolbar
  3627. _this.obj.on("contextmenu", "div[dtree-click='"+eventName.itemNodeClick+"'][d-contextmenu='true'][dtree-disabled='false']", function(e){
  3628. var $div = $(this),
  3629. node = _this.getNodeParam($div);
  3630. _this.toolbarHide();
  3631. // toolbar加载前执行的方法,执行完毕之后创建按钮
  3632. _this.setToolbarDom().setToolbarPlace(_this.toolbarFun.loadToolbarBefore(event.cloneObj(_this.toolbarMenu), _this.getRequestParam(node), $div));
  3633. var e = e || window.event,
  3634. mx = e.pageX - $div.offset().left +45 ,
  3635. my = $div.offset().top - _this.obj.closest(_this.toolbarScroll).offset().top +15;
  3636. _this.navThis($div);
  3637. var $toolBarDiv = _this.obj.prevAll('div#dtree_toolbar_'+_this.obj[0].id);
  3638. $toolBarDiv.find(".layui-nav-child").addClass('layui-anim-fadein layui-show');
  3639. $toolBarDiv.css({'left':mx+'px','top':my+'px'});
  3640. e.stopPropagation();
  3641. return false;
  3642. });
  3643. // 绑定装载树的上层出现滚动条的容器,让toolbar隐藏
  3644. _this.obj.closest(_this.toolbarScroll).scroll(function() {
  3645. _this.toolbarHide();
  3646. });
  3647. // 绑定toolbar的点击事件
  3648. _this.obj.prevAll('div#dtree_toolbar_'+_this.obj[0].id).on("click", "a[dtree-tool]", function(event) {
  3649. event.stopPropagation();
  3650. var $div = _this.getNodeDom().nowOrRootDiv(),
  3651. node = _this.getNodeParam($div);
  3652. _this.toolbarHide();
  3653. var tool = $(this).attr("dtree-tool");
  3654. _this.toolbarListener(tool, $div);
  3655. });
  3656. } else if(_this.toolbarWay == "fixed") {
  3657. // 绑定toolbar的点击事件
  3658. _this.obj.on("click", "a[dtree-tool]", function(event) {
  3659. event.stopPropagation();
  3660. var $a = $(this),
  3661. $cite = $a.parent("em."+TOOLBAR_TOOL_EM).prev("cite"), //当前选中节点的text
  3662. $div = $cite.parent("div"),
  3663. node = _this.getNodeParam($div);
  3664. var tool = $a.attr("dtree-tool");
  3665. _this.toolbarHide();
  3666. _this.navThis($div);
  3667. _this.toolbarListener(tool, $div);
  3668. });
  3669. } else if(_this.toolbarWay == "follow") {
  3670. //绑定所有子节点div的mouseover mouseout事件,用于显示或隐藏toolbar
  3671. _this.obj.on("mouseover mouseout", "div[dtree-click='"+eventName.itemNodeClick+"'][dtree-disabled='false']", function(event){
  3672. var $div = $(this),
  3673. $toolBarEm = $div.children("em."+TOOLBAR_TOOL_EM);
  3674. if(event.type == "mouseover"){
  3675. $toolBarEm.removeClass(NAV_HIDE);
  3676. event.stopPropagation();
  3677. } else if(event.type == "mouseout"){
  3678. $toolBarEm.addClass(NAV_HIDE);
  3679. event.stopPropagation();
  3680. }
  3681. });
  3682. // 绑定toolbar的点击事件
  3683. _this.obj.on("click", "a[dtree-tool]", function(event) {
  3684. event.stopPropagation();
  3685. var $a = $(this),
  3686. $cite = $a.parent("em."+TOOLBAR_TOOL_EM).prev("cite"), //当前选中节点的text
  3687. $div = $cite.parent("div"),
  3688. node = _this.getNodeParam($div);
  3689. var tool = $a.attr("dtree-tool");
  3690. _this.toolbarHide();
  3691. _this.navThis($div);
  3692. _this.toolbarListener(tool, $div);
  3693. });
  3694. }
  3695. }
  3696. // 开启拖拽
  3697. /*if(_this.drawable) {
  3698. //绑定所有子节点div的拖拽事件
  3699. _this.obj.on("mousedown", "div[dtree-click='" + eventName.itemNodeClick + "'][dtree-disabled='false']", function (e) {
  3700. var moveCount = 0;
  3701. var $div = $(this);
  3702. // 克隆点击节点
  3703. var $tempDiv = $div.clone();
  3704. // 获取当前被点击节点的坐标
  3705. var e = e || window.event;
  3706. var x = $div.offset().left;
  3707. var y = $div.offset().top;
  3708. var left = e.pageX - x;
  3709. var top = e.pageY - y;
  3710. _this.obj.append($tempDiv);
  3711. // 克隆节点标记
  3712. $tempDiv.css({
  3713. "position": "absolute",
  3714. "background-color": "#FF8C69",
  3715. 'left' : x,
  3716. 'top' : top,
  3717. });
  3718. // 添加临时节点
  3719. $div.css('cursor', 'move');
  3720. $(document).on("mousemove", function (e1) {
  3721. // moveCount为了区别click事件
  3722. moveCount++;
  3723. if (moveCount > 2) {
  3724. // 计算坐标
  3725. var e1 = e1 || window.event;
  3726. var x1 = e1.pageX - left;
  3727. var y1 = e1.pageY - top;
  3728. var maxL = $(document).width() - $div.outerWidth();
  3729. var maxT = $(document).height() - $div.outerHeight();
  3730. //不允许超出浏览器范围
  3731. x1 = x1 < 0 ? 0: x1;
  3732. x1 = x1 > maxL ? maxL: x1;
  3733. y1 = y1 < 0 ? 0: y;
  3734. y1 = y1 > maxT ? maxT: y1;
  3735. //3.修改克隆节点的坐标
  3736. $tempDiv.css({
  3737. 'left' : x1,
  3738. 'top' : y1,
  3739. });
  3740. }
  3741. }).on("mouseup", function (e2) {
  3742. $(document).off("mousemove").off("mouseup");
  3743. });
  3744. });
  3745. }*/
  3746. };
  3747. // 绑定body的单击,让本页面所有的toolbar隐藏
  3748. $BODY.on("click", function(event){
  3749. $("div."+LI_DIV_TOOLBAR).find(".layui-show").removeClass('layui-anim-fadein layui-show');
  3750. });
  3751. // 解绑浏览器事件
  3752. DTree.prototype.unbindBrowserEvent = function(){
  3753. var _this = this;
  3754. // 本身事件解绑
  3755. _this.obj.unbind();
  3756. // 菜单栏解绑
  3757. if(_this.menubar){
  3758. _this.obj.prevAll('div#dtree_menubar_'+_this.obj[0].id).unbind();
  3759. if(_this.obj.closest('body').find("*[dtree-id='"+_this.obj[0].id+"'][dtree-menu]").length > 0){
  3760. _this.obj.closest('body').find("*[dtree-id='"+_this.obj[0].id+"'][dtree-menu]").unbind();
  3761. }
  3762. }
  3763. // 工具栏解绑
  3764. if(_this.toolbar){
  3765. if(_this.toolbarWay == "contextmenu") {
  3766. _this.obj.prevAll('div#dtree_toolbar_'+_this.obj[0].id).unbind();
  3767. if(_this.obj.closest(_this.toolbarScroll).length > 0){
  3768. _this.obj.closest(_this.toolbarScroll).unbind();
  3769. }
  3770. }
  3771. }
  3772. };
  3773. /** 外部访问 **/
  3774. var dtree = {
  3775. render: function(options){ // 初始化树
  3776. var dTree = null;
  3777. var id = event.getElemId(options);
  3778. if(id == "") {
  3779. layer.msg("页面中未找到绑定id", {icon:5});
  3780. } else {
  3781. dTree = DTrees[id];
  3782. if(typeof dTree === 'object'){
  3783. dTree.reloadSetting(options);
  3784. dTree.initTreePlus();
  3785. dTree.openTreePlus();
  3786. dTree.initNodeParam();
  3787. dTree.init();
  3788. dTree.unbindBrowserEvent();
  3789. dTree.bindBrowserEvent();
  3790. } else {
  3791. // 创建树
  3792. dTree = new DTree(options);
  3793. // 添加到树数组中去
  3794. DTrees[id] = dTree;
  3795. dTree.initTreePlus();
  3796. dTree.openTreePlus();
  3797. dTree.init();
  3798. dTree.bindBrowserEvent();
  3799. }
  3800. }
  3801. return dTree;
  3802. },
  3803. reload: function(dTree, options){ // 重新加载树
  3804. if(typeof dTree === "string"){
  3805. dTree = DTrees[dTree];
  3806. }
  3807. if(typeof dTree === "undefined"){
  3808. layer.msg("方法获取失败,请检查ID或对象传递是否正确",{icon:2});
  3809. return ;
  3810. }
  3811. dTree.reloadSetting(options);
  3812. dTree.initTreePlus();
  3813. dTree.openTreePlus();
  3814. dTree.initNodeParam();
  3815. dTree.init();
  3816. dTree.unbindBrowserEvent();
  3817. dTree.bindBrowserEvent();
  3818. },
  3819. on: function(events, callback) { // 绑定事件
  3820. if(events.indexOf("'") > 0){
  3821. events = events.replace(/'/g,"");
  3822. }
  3823. if(events.indexOf('"') > 0) {
  3824. events = events.replace(/"/g,"");
  3825. }
  3826. return layui.onevent.call(this, MOD_NAME, events, callback);
  3827. },
  3828. click: function(dTree, id) { // 模拟单击事件
  3829. if(typeof dTree === "string"){
  3830. dTree = DTrees[dTree];
  3831. }
  3832. if(typeof dTree === "undefined"){
  3833. layer.msg("方法获取失败,请检查ID或对象传递是否正确",{icon:2});
  3834. return ;
  3835. }
  3836. $("div[dtree-click='"+eventName.itemNodeClick+"'][dtree-id='"+dTree.obj[0].id+"'][data-id='"+id+"']").click();
  3837. },
  3838. getNowParam: function(dTree){ // 获取当前选中值
  3839. if(typeof dTree === "string"){
  3840. dTree = DTrees[dTree];
  3841. }
  3842. if(typeof dTree === "undefined"){
  3843. layer.msg("方法获取失败,请检查ID或对象传递是否正确",{icon:2});
  3844. return ;
  3845. }
  3846. return dTree.getNowParam(); // 获取当前选中值
  3847. },
  3848. getParam: function(dTree, id){ // 获取指定节点值
  3849. if(typeof dTree === "string"){
  3850. dTree = DTrees[dTree];
  3851. }
  3852. if(typeof dTree === "undefined"){
  3853. layer.msg("方法获取失败,请检查ID或对象传递是否正确",{icon:2});
  3854. return ;
  3855. }
  3856. return dTree.getParam(id); // 获取指定节点值
  3857. },
  3858. getParentParam: function(dTree, id){ // 获取参数的上级节点
  3859. if(typeof dTree === "string"){
  3860. dTree = DTrees[dTree];
  3861. }
  3862. if(typeof dTree === "undefined"){
  3863. layer.msg("方法获取失败,请检查ID或对象传递是否正确",{icon:2});
  3864. return ;
  3865. }
  3866. return dTree.getParentParam(id);
  3867. },
  3868. getAllParentParam: function(dTree, id){ // 获取参数的全部上级节点
  3869. if(typeof dTree === "string"){
  3870. dTree = DTrees[dTree];
  3871. }
  3872. if(typeof dTree === "undefined"){
  3873. layer.msg("方法获取失败,请检查ID或对象传递是否正确",{icon:2});
  3874. return ;
  3875. }
  3876. return dTree.getAllParentParam(id);
  3877. },
  3878. getChildParam: function(dTree, id){ // 获取参数的全部下级节点
  3879. if(typeof dTree === "string"){
  3880. dTree = DTrees[dTree];
  3881. }
  3882. if(typeof dTree === "undefined"){
  3883. layer.msg("方法获取失败,请检查ID或对象传递是否正确",{icon:2});
  3884. return ;
  3885. }
  3886. return dTree.getChildParam(id);
  3887. },
  3888. getCheckbarNodesParam: function(dTree){ // 获取复选框选中值
  3889. if(typeof dTree === "string"){
  3890. dTree = DTrees[dTree];
  3891. }
  3892. if(typeof dTree === "undefined"){
  3893. layer.msg("方法获取失败,请检查ID或对象传递是否正确",{icon:2});
  3894. return {};
  3895. }
  3896. return dTree.getCheckbarNodesParam(); // 获取复选框选中值
  3897. },
  3898. dataInit: function(dTree, chooseId){ // 初始化选中树,针对数据反选
  3899. if(typeof dTree === "string"){
  3900. dTree = DTrees[dTree];
  3901. }
  3902. if(typeof dTree === "undefined"){
  3903. layer.msg("方法获取失败,请检查ID或对象传递是否正确",{icon:2});
  3904. return ;
  3905. }
  3906. if(chooseId){
  3907. return dTree.dataInit(chooseId);
  3908. }
  3909. },
  3910. chooseDataInit: function(dTree, chooseIds){ // 初始化复选框选中,针对数据反选
  3911. if(typeof dTree === "string"){
  3912. dTree = DTrees[dTree];
  3913. }
  3914. if(typeof dTree === "undefined"){
  3915. layer.msg("方法获取失败,请检查ID或对象传递是否正确",{icon:2});
  3916. return ;
  3917. }
  3918. if(chooseIds){
  3919. return dTree.chooseDataInit(chooseIds);
  3920. }
  3921. },
  3922. changeCheckbarNodes: function(dTree){ //判断复选框是否发生变更
  3923. if(typeof dTree === "string"){
  3924. dTree = DTrees[dTree];
  3925. }
  3926. if(typeof dTree === "undefined"){
  3927. layer.msg("方法获取失败,请检查ID或对象传递是否正确",{icon:2});
  3928. return ;
  3929. }
  3930. return dTree.changeCheckbarNodes();
  3931. },
  3932. initNoAllCheck: function(dTree) { //复选框半选状态初始化设置
  3933. if(typeof dTree === "string"){
  3934. dTree = DTrees[dTree];
  3935. }
  3936. if(typeof dTree === "undefined"){
  3937. layer.msg("方法获取失败,请检查ID或对象传递是否正确",{icon:2});
  3938. return ;
  3939. }
  3940. return dTree.initNoAllCheck();
  3941. },
  3942. initAllCheck: function(dTree){ // 复选框选中状态初始化设置
  3943. if(typeof dTree === "string"){
  3944. dTree = DTrees[dTree];
  3945. }
  3946. if(typeof dTree === "undefined"){
  3947. layer.msg("方法获取失败,请检查ID或对象传递是否正确",{icon:2});
  3948. return ;
  3949. }
  3950. return dTree.initAllCheck();
  3951. },
  3952. escape: function(html){ // 字符串格式化
  3953. return event.escape(html);
  3954. },
  3955. unescape: function(str){ // 字符串反格式化
  3956. return event.unescape(str);
  3957. },
  3958. version: function(){ //获取版本号
  3959. return VERSION;
  3960. }
  3961. };
  3962. exports('dtree', dtree);
  3963. });