main.js 49 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355
  1. //这里的代码是最早写的,很乱,以后整合优化
  2. var editors = [];
  3. var editors_index = [];
  4. var tables = [];
  5. var select = '';
  6. var submitButton = '';
  7. var editorWidth = 0;
  8. String.prototype.replaceAll = function(reallyDo, replaceWith, ignoreCase) {
  9. if (!RegExp.prototype.isPrototypeOf(reallyDo)) {
  10. return this.replace(new RegExp(reallyDo, (ignoreCase ? "gi": "g")), replaceWith);
  11. } else {
  12. return this.replace(reallyDo, replaceWith);
  13. }
  14. }
  15. Array.prototype.remove = function(val) {
  16. var index = -1;
  17. for(var i = 0; i < this.length; i++)
  18. {
  19. if(this[i] == val)
  20. {
  21. index = i;
  22. }
  23. }
  24. if (index > -1) {
  25. this.splice(index, 1);
  26. }
  27. };
  28. $(document).ready(function()
  29. {
  30. //init();
  31. });
  32. function init(ew)
  33. {
  34. if (ew) {
  35. editorWidth = ew;
  36. } else {
  37. editorWidth = 0;
  38. }
  39. editors = [];
  40. editors_index = [];
  41. initEditor();
  42. select = '';
  43. edit();
  44. del();
  45. checkbox();
  46. image();
  47. change();
  48. autocomplete();
  49. template();
  50. submit();
  51. loadShow();
  52. initPic();
  53. initDate();
  54. initLayui();
  55. initColor();
  56. //更新页面一些功能,上边的一些功能等找时间再优化吧
  57. dever_update.init();
  58. hljs.initHighlightingOnLoad();
  59. table();
  60. }
  61. function initLayui()
  62. {
  63. layui.use('layer', function() {
  64. var layer = layui.layer;
  65. layer.ready(function() {
  66. $(".dever-img").each(function()
  67. {
  68. layer.photos({
  69. photos: '#' + $(this).attr('id')
  70. });
  71. });
  72. });
  73. });
  74. }
  75. function initColor()
  76. {
  77. if ($('.dever-color').length) {
  78. $('.dever-color').each(function()
  79. {
  80. var self = $(this);
  81. var val = self.val();
  82. if (!val) {
  83. val = '#000000';
  84. }
  85. self.css('border-right', '40px solid '+val);
  86. self.colpick({
  87. layout:'hex',
  88. submit:0,
  89. colorScheme:'dark',
  90. color: val,
  91. onChange : function (hsb,hex,rgb,el,bySetColor) {
  92. $(el).css('border-color','#'+hex);
  93. if(!bySetColor) $(el).val('#' + hex);
  94. }
  95. }).keyup(function(){
  96. $(this).colpickSetColor(this.value);
  97. });
  98. })
  99. }
  100. }
  101. function formData(form)
  102. {
  103. var d = {};
  104. var t = $(form).serializeArray();
  105. var u = '';
  106. $.each(t, function() {
  107. if (this.name.indexOf('search_') != -1) {
  108. d[this.name] = this.value;
  109. u += '&' + this.name + '=' + this.value;
  110. }
  111. });
  112. return [d,u];
  113. }
  114. function initMenu()
  115. {
  116. if(typeof(config.layout) != "undefined")
  117. {
  118. $('.list-unstyled li').each(function(j)
  119. {
  120. $(this).unbind('click').bind('click', function()
  121. {
  122. if ($(this).index() == i) {
  123. //return;
  124. }
  125. $('.list-unstyled .active').each(function()
  126. {
  127. $(this).attr('class', '');
  128. $(this).find('a').attr('class', '');
  129. })
  130. $(this).attr('class', 'active');
  131. var a = $(this).find('a');
  132. a.attr('class', 'subdrop');
  133. //alert($(this).attr('class'));
  134. })
  135. });
  136. /*
  137. $('.project-list').each(function(i)
  138. {
  139. $(this).unbind('click').bind('click', function()
  140. {
  141. if ($(this).index() == i) {
  142. return;
  143. }
  144. $('.project-list').each(function()
  145. {
  146. $(this).find('i').parent().attr('class', '');
  147. $(this).find('ul').attr('class', 'list-unstyled upload-menu');
  148. })
  149. $(this).find('i').parent().attr('class', 'active');
  150. $(this).find('ul').attr('class', 'list-unstyled upload-menu in');
  151. })
  152. });
  153. */
  154. }
  155. }
  156. function setOption(e, id)
  157. {
  158. var s = $("select[name="+id+"]");
  159. var v = s.val();
  160. if (!select) {
  161. select = s.clone();
  162. }
  163. s.find('option[parent]').remove();
  164. //查找出需要显示的option并复制
  165. var options = select.find("option[parent="+e.val()+"]").clone();
  166. //将需要显示的option添加到select中
  167. s.append(options);
  168. //因为option.remove()不会刷新控件,需要将新的option切换上去
  169. //这里排除了options.size() == 0的情况
  170. var state = 2;
  171. s.find('option').each(function()
  172. {
  173. var val = $(this).val();
  174. if (v == val) {
  175. state = 1;
  176. }
  177. });
  178. if (state == 1) {
  179. s.val(v);
  180. } else {
  181. s.val(0);
  182. }
  183. }
  184. function table()
  185. {
  186. if ($('.table-responsive').length) {
  187. $('.table-responsive[data-pattern]').each(function()
  188. {
  189. $(this).responsiveTable('update');
  190. });
  191. }
  192. }
  193. function pjax(param)
  194. {
  195. param.timeout = 8000;
  196. $.pjax(param);
  197. }
  198. function initDate()
  199. {
  200. $.datetimepicker.setLocale('ch');
  201. if($(".manage_time").length)
  202. {
  203. $(".manage_time").each(function()
  204. {
  205. $(this).datetimepicker(
  206. {
  207. //inline:true,
  208. timepicker:false,
  209. format:'Y-m-d',
  210. lang:'ch'
  211. });
  212. });
  213. }
  214. if($(".manage_date").length)
  215. {
  216. $(".manage_date").each(function()
  217. {
  218. $(this).datetimepicker(
  219. {
  220. //datepicker:false,
  221. format:'Y-m-d H:i:s',
  222. lang:'ch'
  223. });
  224. });
  225. }
  226. }
  227. function initPic()
  228. {
  229. $('a[rel]').fancybox();
  230. }
  231. function initEditor(e)
  232. {
  233. if (!e) {
  234. e = $('.editor');
  235. }
  236. if(e.length)
  237. {
  238. var param = false;
  239. var editor = [];
  240. e.each(function()
  241. {
  242. var parent = $(this).parent().parent();
  243. //alert(parent.attr('id'));
  244. if(parent.attr('id') && parent.attr('id').indexOf('-child-0') != -1)
  245. {
  246. return;
  247. }
  248. if (!param) {
  249. param = loadEditorParam($(this));
  250. }
  251. editor.push($(this).attr('id'));
  252. });
  253. if (editor) {
  254. for (var i in editor) {
  255. var id = editor[i];
  256. if (typeof(id) == 'string' && !editors[id]) {
  257. param.index = editors_index.length;
  258. editors[id] = KindEditor.create('#' + id, param);
  259. editors_index.push(id);
  260. }
  261. }
  262. }
  263. }
  264. if ($('.editor_tool').length) {
  265. $('.editor_tool').each(function()
  266. {
  267. $(this).click(function()
  268. {
  269. var tool = $(this).attr('tool');
  270. var id = $(this).attr('editor_id');
  271. editors[id].clickToolbar(tool);
  272. })
  273. });
  274. }
  275. }
  276. function loadEditorParam(e)
  277. {
  278. if(!e.length)
  279. {
  280. return;
  281. }
  282. var key = e.attr('key');
  283. var media = e.attr('media');
  284. if (!media) {
  285. media = key;
  286. }
  287. var view = config.upload.replace('save', 'view');
  288. var param = {
  289. height : "400px",
  290. allowImageUpload: true, //上传图片框本地上传的功能,false为隐藏,默认为true
  291. allowImageRemote : true, //上传图片框网络图片的功能,false为隐藏,默认为true
  292. allowFileManager : true, //浏览图片空间
  293. allowMediaUpload : true,
  294. filterMode : false, //HTML特殊代码过滤
  295. themeType : 'default',
  296. filePostName : 'file',
  297. dialogOffset : 0, //对话框距离页面顶部的位置,默认为0居中,
  298. uploadJson : config.upload + '.kindeditor?key=' + key,
  299. uploadMediaJson : config.upload + '.kindeditor?key=' + media,
  300. fileManagerJson : view + '.files?key=' + media,
  301. items : [
  302. 'source', '|', 'undo', 'redo', '|', 'preview', 'print', 'template', 'code', 'cut', 'copy', 'paste',
  303. 'plainpaste', 'wordpaste', '|', 'justifyleft', 'justifycenter', 'justifyright',
  304. 'justifyfull', 'insertorderedlist', 'insertunorderedlist', 'indent', 'outdent', 'subscript',
  305. 'superscript', 'clearhtml', 'quickformat', 'selectall', '|', 'fullscreen', '/',
  306. 'formatblock', 'fontname', 'fontsize', '|', 'forecolor', 'hilitecolor', 'bold',
  307. 'italic', 'underline', 'strikethrough', 'lineheight', 'removeformat', '|', 'image', 'multiimage' ,'media','table', 'hr', 'emoticons', 'baidumap', 'pagebreak',
  308. 'anchor', 'link', 'unlink'
  309. ]
  310. //media
  311. /*
  312. items : [
  313. 'source', '|', 'undo', 'redo', '|', 'preview', 'print', 'template', 'code', 'cut', 'copy', 'paste',
  314. 'plainpaste', 'wordpaste', '|', 'justifyleft', 'justifycenter', 'justifyright',
  315. 'justifyfull', 'insertorderedlist', 'insertunorderedlist', 'indent', 'outdent', 'subscript',
  316. 'superscript', 'clearhtml', 'quickformat', 'selectall', '|', 'fullscreen', '/',
  317. 'formatblock', 'fontname', 'fontsize', '|', 'forecolor', 'hilitecolor', 'bold',
  318. 'italic', 'underline', 'strikethrough', 'lineheight', 'removeformat', '|', 'image', 'multiimage',
  319. 'flash', 'media', 'insertfile', 'table', 'hr', 'emoticons', 'baidumap', 'pagebreak',
  320. 'anchor', 'link', 'unlink', '|', 'about'
  321. ]
  322. */
  323. }
  324. if (editorWidth > 0) {
  325. param.width = editorWidth + 'px';
  326. param.minWidth = editorWidth + 'px';
  327. }
  328. return param;
  329. }
  330. //更新页面的提交按钮
  331. function submit()
  332. {
  333. if($(".save-data").length)
  334. {
  335. if (submitButton) {
  336. $(".save-data").each(function()
  337. {
  338. $(this).html(submitButton);
  339. })
  340. }
  341. $(".save-data").unbind('click').bind('click', function()
  342. {
  343. if (editors) {
  344. for (var i in editors) {
  345. if (i.indexOf('update_') != -1) {
  346. editors[i].sync();
  347. }
  348. }
  349. }
  350. //return;
  351. submitButton = $(this).html();
  352. $(this).html('loading...');
  353. $(this).unbind('click');
  354. submit_action();
  355. })
  356. }
  357. }
  358. //直接提交更新页的数据
  359. function submit_action()
  360. {
  361. $(".form1").submit();
  362. }
  363. //设置某一个input的值
  364. function set_update(id, value)
  365. {
  366. if($(id).length)
  367. {
  368. $(id).val(value);
  369. }
  370. }
  371. /**
  372. * 批量复制数据
  373. */
  374. function copy_data(e)
  375. {
  376. var html = '<div>';
  377. html += '<div><span>请输入要复制的数量:</span><input type="text" class="form-control form_margin" id="temp_copy_num" /></div>';
  378. html += '</div>';
  379. $('#dever_modal_body').html(html);
  380. $('#dever_modal_title').html('复制数据');
  381. $("#dever_modal_yes").unbind('click').bind('click', function()
  382. {
  383. set_update('#copy_num', $("#temp_copy_num").val());
  384. set_update('#update_where_id', 0);
  385. submit_action();
  386. });
  387. }
  388. //头部菜单
  389. function topMenu(e)
  390. {
  391. var p = e.parent().parent().parent().find('span');
  392. p.html(e.html());
  393. //更新当前的精细权限
  394. var url = config.host + 'top.update_action?json=1';
  395. var id = e.attr('data-id');
  396. $.post(url, {id:id}, function(t)
  397. {
  398. var href = location.href;
  399. if(location.href.indexOf('where_id') != -1)
  400. {
  401. var temp = location.href.split('where_id');
  402. href = temp[0] + 'where_id=' + t;
  403. }
  404. if(typeof(config.layout) != "undefined" && $(config.layout).length)
  405. {
  406. pjax({url: href, container: config.layout})
  407. }
  408. else
  409. {
  410. location.href = href;
  411. }
  412. })
  413. }
  414. //更新页面的批量载入选择
  415. function loadShow()
  416. {
  417. if($(".show_input").length)
  418. {
  419. $(".show_input input").each(function()
  420. {
  421. if($(this).attr('checked'))
  422. {
  423. inputShow($(this), $(this).attr('show_id'), 'input');
  424. }
  425. })
  426. $(".show_input select").each(function()
  427. {
  428. if($(this).find('option:selected').text())
  429. {
  430. inputShow($(this), $(this).attr('show_id'));
  431. }
  432. })
  433. }
  434. }
  435. function inputShow(e,n,t)
  436. {
  437. $(".show_" + n).hide();
  438. var array = ['input', 'textarea'];
  439. for(var a in array)
  440. {
  441. if ($(".show_" + n).find(array[a]).length) {
  442. var c = $(".show_" + n).find(array[a]).attr('class');
  443. if (c.indexOf('validate[required]') > -1) {
  444. $(".show_" + n).find(array[a]).removeClass('validate[required]').addClass('validates');
  445. }
  446. }
  447. }
  448. if (t == 'input') {
  449. var item = e.parent().find('input');
  450. item.each(function()
  451. {
  452. if($(this).get(0).checked == true)
  453. {
  454. inputShowOne($(this),n);
  455. }
  456. });
  457. } else {
  458. var item = e.parent().find('select');
  459. item.each(function()
  460. {
  461. if($(this).find('option:selected').text())
  462. {
  463. inputShowOne($(this),n);
  464. }
  465. });
  466. }
  467. }
  468. function inputShowOne(e,n)
  469. {
  470. var value = e.val();
  471. var ele = '.show_' + n + '_ajax';
  472. if ($(ele).length) {
  473. $(ele).each(function()
  474. {
  475. var self = $(this);
  476. var url = self.attr('dever-ajax');
  477. $.getJSON(url + value + '&callback=?', function(t) {
  478. self.find('.margin-top').html(t.data);
  479. inputShowOneValiDate(self);
  480. checkbox();
  481. })
  482. })
  483. } else {
  484. ele = '.show_' + n + '_' + value;
  485. inputShowOneValiDate($(ele));
  486. }
  487. }
  488. function inputShowOneValiDate(e)
  489. {
  490. e.show();
  491. var array = ['input', 'textarea'];
  492. for(var a in array)
  493. {
  494. if(e.length && e.attr('class').indexOf('show_no') == -1)
  495. {
  496. e.find(array[a]).each(function()
  497. {
  498. var parent = $(this).parent();
  499. if($(this).attr('class') != 'editor' && $(this).attr('class').indexOf('validates') > -1 && parent.find('label').length && parent.find('label').html().indexOf('选填') == -1)
  500. {
  501. $(this).addClass('validate[required]');
  502. }
  503. })
  504. }
  505. }
  506. }
  507. //批量更新
  508. function list_mul(e)
  509. {
  510. var type = parseInt($("#mul_type").val());
  511. if(type != 1 && type != 2)
  512. {
  513. alert('您还没有选择数据更新方式');
  514. return;
  515. }
  516. var index = layer.confirm('确定进行此项操作吗?', function()
  517. {
  518. $('#method').val('mul');
  519. $('#function').val('msg');
  520. layer.close(index);
  521. $('#form1').attr('target', 'f1').submit();
  522. })
  523. }
  524. //搜索
  525. function list_search(e)
  526. {
  527. $('#method').val('search');
  528. $('#function').val('');
  529. $('#form1').attr('target', '').submit();
  530. }
  531. //更新数据
  532. function update(e, id, project, table, notice)
  533. {
  534. var call = function()
  535. {
  536. var col = e.attr('name').replace('up_col_', '');
  537. var value = e.val();
  538. var old = e.attr('data-old');
  539. var url = config.host + 'database.update_action?json=1';
  540. $.post(url, {where_id:id,col:col,value:value,project:project,table:table}, function(t)
  541. {
  542. var t = eval('('+t+')');
  543. if (t.status == 1) {
  544. e.attr('data-old', value);
  545. notify('操作已成功!您的操作已修改当前选项!');
  546. preview();
  547. } else {
  548. msg(t);
  549. e.val(old);
  550. }
  551. })
  552. }
  553. if(notice)
  554. {
  555. var index = layer.confirm(notice, function()
  556. {
  557. layer.close(index);
  558. call();
  559. });
  560. }
  561. else
  562. {
  563. call();
  564. }
  565. }
  566. function notify(msg)
  567. {
  568. var notice = new PNotify({
  569. title: '提示信息',
  570. text: msg,
  571. buttons: {
  572. closer: false,
  573. sticker: false
  574. }
  575. });
  576. notice.get().click(function() {
  577. notice.remove();
  578. });
  579. }
  580. //模板选择
  581. function template()
  582. {
  583. if(config.template)
  584. {
  585. $('body').attr('class', 'theme-' + config.template);
  586. }
  587. if($(".selector").length)
  588. {
  589. $(".selector").each(function()
  590. {
  591. if($(this).data('check') == 'checked')
  592. {
  593. selector($(this));
  594. }
  595. })
  596. }
  597. }
  598. //选择器
  599. function selector(e)
  600. {
  601. var value = e.data('value');
  602. var name = e.data('name');
  603. $('#'+name+'_value').val(value);
  604. $('.'+name+'_selector').children().css({'border':'1px solid #ccc'});
  605. e.children().css({'border':'1px solid black'});
  606. if(name == 'update_template')
  607. {
  608. $('body').attr('class', 'theme-' + value);
  609. }
  610. }
  611. //根据e的值,来载入其他数据
  612. function loading(e, data)
  613. {
  614. var value = e.val();
  615. if(e.attr('id') && e.attr('id').indexOf('_temp') != -1)
  616. {
  617. var id = e.attr('id').replace('_temp', '');
  618. if($('#' + id).length)
  619. {
  620. var value = $('#' + id).val();
  621. }
  622. }
  623. if(data.element)
  624. {
  625. if(data.url)
  626. {
  627. data.value = value;
  628. $.getJSON(data.url, data, function(t)
  629. {
  630. $('#update_'+data.element+'_value').val(t.data);
  631. });
  632. }
  633. else
  634. {
  635. $('#update_'+data.element+'_value').val(value);
  636. }
  637. }
  638. else if(data.url)
  639. {
  640. data.value = value;
  641. data.where_id = $('#update_where_id').val();
  642. data.table = $('#table').val();
  643. data.project = $('#project').val();
  644. $.getJSON(data.url, data, function(s)
  645. {
  646. t = s.data;
  647. if(t.indexOf('onblur') != -1)
  648. {
  649. eval(t);
  650. }
  651. else
  652. {
  653. var parent = e.parent().parent();
  654. if(t.indexOf('status') == -1)
  655. {
  656. if(data.type == 1)
  657. {
  658. $('.checking_1,.checking_2,.checking_3,.checking_4').each(function()
  659. {
  660. $(this).remove();
  661. });
  662. }
  663. else
  664. {
  665. $('.checking_-1,.checking_3,.checking_4').each(function()
  666. {
  667. $(this).remove();
  668. });
  669. }
  670. parent.after(t);
  671. checkbox();
  672. }
  673. }
  674. });
  675. }
  676. }
  677. //根据e的值,来载入其他数据,先检测是否选中
  678. function checking(name, e, data)
  679. {
  680. var value = [];
  681. $('.' + name).each(function()
  682. {
  683. if($(this).get(0).checked == true)
  684. {
  685. value.push($(this).val());
  686. }
  687. });
  688. if(data.url)
  689. {
  690. data.value = value.join(',');
  691. data.where_id = $('#update_where_id').val();
  692. data.table = $('#table').val();
  693. data.project = $('#project').val();
  694. if(data.check)
  695. {
  696. data.check_value = false;
  697. $(data.check).each(function()
  698. {
  699. if($(this).get(0).checked == true)
  700. {
  701. data.check_value = $(this).val();
  702. }
  703. });
  704. }
  705. $.getJSON(data.url, data, function(s)
  706. {
  707. t = s.data;
  708. var parent = e.parent().parent().parent();
  709. if(t.indexOf('status') == -1)
  710. {
  711. if(data.type == 1)
  712. {
  713. $('.checking_1,.checking_2,.checking_3,.checking_4').each(function()
  714. {
  715. $(this).remove();
  716. });
  717. }
  718. else
  719. {
  720. $('.checking_-1,.checking_3,.checking_4').each(function()
  721. {
  722. $(this).remove();
  723. });
  724. }
  725. parent.after(t);
  726. checkbox();
  727. }
  728. });
  729. }
  730. }
  731. function autocomplete()
  732. {
  733. if ($("input").length) {
  734. $("input").each(function()
  735. {
  736. $(this).attr('autocomplete', 'new-password');
  737. });
  738. }
  739. if($("input[complete]").length)
  740. {
  741. $("input[complete]").each(function()
  742. {
  743. var cache = {};
  744. var self = $(this);
  745. self.autocomplete(
  746. {
  747. minLength: 2,
  748. source: function( request, response )
  749. {
  750. var term = request.term.split( /,\s*/ );
  751. request.term = term.pop();
  752. if ( request.term in cache ) {
  753. response( cache[ request.term ] );
  754. return;
  755. }
  756. var cate = self.attr('complete_cate');
  757. if (cate) {
  758. request[cate] = $('update_' + cate + '_value').val();
  759. }
  760. $.getJSON(self.attr('complete') + '&callback=?', request, function( data, status, xhr ) {
  761. data = data.data
  762. cache[ term ] = data;
  763. var state = true;
  764. for(var i in data)
  765. {
  766. if(data[i].id <=0)
  767. {
  768. state = false;
  769. }
  770. }
  771. if(state)
  772. {
  773. response( data );
  774. }
  775. });
  776. },
  777. focus: function() {
  778. // prevent value inserted on focus
  779. return false;
  780. },
  781. select: function( event, ui )
  782. {
  783. //log( "Selected: " + ui.item.value + " aka " + ui.item.id );
  784. var value = self.attr('complete_callback');
  785. var id = self.attr('id').replace('_temp', '');
  786. var name = self.attr('name').replace('_temp', '');
  787. //var e = $("#" + id);
  788. var e = self;
  789. var html = '<div style="margin-top: 10px;width: 60%; overflow: auto;max-height: 500px;"><table id="'+id+'_show" class="table table-small-font table-bordered"></table></div>';
  790. if (!$("#" + id + '_show').length) {
  791. e.parent().append(html);
  792. }
  793. if ($("#" + id + '_show').html().indexOf(ui.item.value) == -1)
  794. {
  795. var link = '';
  796. var attr = '';
  797. var pic = '';
  798. if (ui.item['pic']) {
  799. pic = '<a href="javascript:;"><img src="'+ui.item['pic']+'" width="100"></a>';
  800. }
  801. if (ui.item['link']) {
  802. link = ui.item['link'];
  803. attr = ' target="_blank"';
  804. }
  805. var html = '<tr><td width="90%"><input type="checkbox" checked name="'+name+'[]" value="'+ui.item[value]+'"/>&nbsp;&nbsp;'+pic+'<a href="'+link+'" '+attr+' title="'+ui.item.value+'">'+ui.item.value+'</td><td width="10%"><a href="javascript:;" onclick="autocomplete_del($(this), \''+id+'\', \''+ui.item[value]+'\', \''+name+'\')">[删除]</a></td></tr>';
  806. $("#" + id + '_show').append(html);
  807. if (!autocomplete_value[id]) {
  808. autocomplete_value[id] = [];
  809. }
  810. autocomplete_value[id].push(ui.item[value]);
  811. }
  812. ui.item.value = '';
  813. }
  814. });
  815. })
  816. }
  817. }
  818. function autocomplete_del(e, id, value)
  819. {
  820. e.parent().parent().remove();
  821. autocomplete_value[id].remove(value);
  822. var len = autocomplete_value.length;
  823. if (len < 1 && !($('#del_' + name).length)) {
  824. $("#" + id + '_show').append('<input type="hidden" name="'+name+'[]" id="del_'+name+'" value="-1" />');
  825. }
  826. }
  827. function searchbox(id, e)
  828. {
  829. var self = e.parent().find("input");
  830. var v = self.val();
  831. var key = self.attr('id').replace('_temp', '');
  832. var request = {};
  833. request.term = v;
  834. var cate = self.attr('searchbox_cate');
  835. if (cate) {
  836. var c = cate.split(',');
  837. for (var i in c) {
  838. if (typeof(c[i]) == 'string' && $('#'+c[i]).length) {
  839. request[c[i]] = $('#'+c[i]).val();
  840. }
  841. }
  842. }
  843. var index = layer.msg('加载中...');
  844. $.getJSON(self.attr('searchbox') + '&callback=?', request, function( data, status, xhr ) {
  845. layer.close(index);
  846. var data = data.data;
  847. if (!data) {
  848. showAlert('没有搜索到数据');
  849. return;
  850. }
  851. var html = '<div class="layui-tab layui-tab-brief"" overflow><ul class="layui-tab-title" style="height: 60px; overflow: auto;">{cate}</ul><div class="layui-tab-content" style="padding-top: 0px;">{content}</div><div style="margin-left:10px"><input type="checkbox" onclick="searchbox_checkall($(this), \'searchbox_'+id+'\')"/>&nbsp;全选<button type="button" onclick="searchbox_yes(\''+self.attr('id')+'\', \'.searchbox_'+id+'\', true)" class="btn btn-primary layui-btn layuiadmin-btn-list" style="margin-left:10px;margin-top: -2px;"><i class="fa fa-save"></i> 确定</button></div></div>';
  852. if (data) {
  853. var j = 0;
  854. var c = '';
  855. var s = '';
  856. var cateHtml = '';
  857. var content = '';
  858. for (var i in data) {
  859. if (j == 0) {
  860. c = 'class="layui-this"';
  861. s = 'layui-show';
  862. } else {
  863. c = '';
  864. s = '';
  865. }
  866. cateHtml += '<li '+c+'>'+data[i].name+'</li>';
  867. j++;
  868. var item = '<div class="layui-tab-item '+s+'"><div style="margin-top: 10px;overflow: auto;max-height: 500px;"><table class="table table-small-font table-bordered">{head}';
  869. var p = false;
  870. for (var k in data[i].child) {
  871. if (data[i].child[k].name) {
  872. var pic = '';
  873. if (data[i].child[k].pic) {
  874. pic = '<td><img src="'+data[i].child[k].pic+'" width="100"></td>';
  875. p = true;
  876. }
  877. var check = '';
  878. if (searchbox_value[key].indexOf(data[i].child[k].id) != -1) {
  879. check = 'checked';
  880. }
  881. item += '<tr><td width="10%"><input '+check+' type="checkbox" onclick="searchbox_checkone($(this), \''+self.attr('id')+'\', \''+key+'\', '+data[i].child[k].id+', \''+key+'\')" class="searchbox_'+id+' searchbox_'+id+'_'+data[i].id+'" data-class="searchbox_'+id+'_'+data[i].id+'" data-pic="'+data[i].child[k].pic+'" data-name="'+data[i].child[k].name+'" data-value="'+data[i].child[k].id+'" data-link="'+data[i].child[k].link+'" value="'+data[i].child[k].id+'"/></td>'+pic+'<td><a href="" >'+data[i].child[k].name+'</td></tr>';
  882. }
  883. }
  884. item += '</table></div></div>';
  885. var head = '<tr><td width="10%"><input type="checkbox" class="searchbox_'+id+'" onclick="searchbox_checkall($(this), \'searchbox_'+id+'_'+data[i].id+'\')"/></td><td>标题</td></tr>';
  886. if (p) {
  887. head = head.replace('</td><td>', '</td><td>图片</td><td>');
  888. }
  889. item = item.replace('{head}', head);
  890. content += item;
  891. }
  892. if (cateHtml) {
  893. html = html.replace('{cate}', cateHtml);
  894. }
  895. if (content) {
  896. html = html.replace('{content}', content);
  897. }
  898. }
  899. var config = {
  900. type: 1,
  901. shade: 0.3,
  902. title : false,
  903. shadeClose : true,
  904. area : ['800px', '600px'],
  905. content: html
  906. };
  907. layer.open(config);
  908. layui.use('element', function(){
  909. var element = layui.element;
  910. });
  911. });
  912. }
  913. function searchbox_checkall(e, id)
  914. {
  915. $('.' + id).each(function()
  916. {
  917. $(this).get(0).checked = e.get(0).checked;
  918. //$(this).click();
  919. })
  920. }
  921. function searchbox_checkone(e, id, key, value)
  922. {
  923. if (!e.get(0).checked) {
  924. $('#searchbox_check_' + key + '_' + value).remove();
  925. searchbox_value.remove(value);
  926. var len = searchbox_value.length;
  927. var name = key.replace('_value', '');
  928. if (len < 1 && !($('#del_' + name).length)) {
  929. $("#" + key + '_show').append('<input type="hidden" name="'+name+'[]" id="del_'+name+'" value="-1" />');
  930. }
  931. } else {
  932. var c = '.' + e.attr('data-class');
  933. searchbox_yes(id, c, false);
  934. }
  935. }
  936. function searchbox_yes(e, c, state)
  937. {
  938. var self = $("#" +e);
  939. $(c).each(function()
  940. {
  941. if ($(this).get(0).checked && $(this).val() && $(this).attr('data-value')) {
  942. var value = self.attr('searchbox_callback');
  943. var id = self.attr('id').replace('_temp', '');
  944. var name = self.attr('name').replace('_temp', '');
  945. var html = '<div style="margin-top: 10px;width: 60%; overflow: auto;max-height: 500px;"><table id="'+id+'_show" class="table table-small-font table-bordered"></table></div>';
  946. if (!$("#" + id + '_show').length) {
  947. self.parent().append(html);
  948. }
  949. if (!$("#" + id + '_show').find('#searchbox_check_'+id+'_'+$(this).attr('data-value')).length)
  950. {
  951. var link = '';
  952. var attr = '';
  953. var pic = '';
  954. if ($(this).attr('data-pic') && $(this).attr('data-pic') != 'undefined') {
  955. pic = '<a href="javascript:;"><img src="'+$(this).attr('data-pic')+'" width="100"></a>';
  956. }
  957. if ($(this).attr('data-link')) {
  958. link = $(this).attr('data-link');
  959. attr = ' target="_blank"';
  960. }
  961. var html = '<tr id="searchbox_check_'+id+'_'+$(this).attr('data-value')+'"><td width="90%"><input type="checkbox" checked name="'+name+'[]" value="'+$(this).attr('data-value')+'"/>&nbsp;&nbsp;'+pic+'<a href="'+link+'" '+attr+' title="'+$(this).attr('data-name')+'">'+$(this).attr('data-name')+'</td><td width="10%"><a href="javascript:;" onclick="searchbox_del($(this), \''+id+'\', \''+$(this).attr('data-value')+'\', \''+name+'\')">[删除]</a></td></tr>';
  962. $("#" + id + '_show').append(html);
  963. if (!searchbox_value[id]) {
  964. searchbox_value[id] = [];
  965. }
  966. searchbox_value[id].push($(this).attr('data-value'));
  967. }
  968. }
  969. })
  970. if (state == true) {
  971. layer.closeAll();
  972. }
  973. }
  974. function searchbox_del(e, id, value, name)
  975. {
  976. e.parent().parent().remove();
  977. searchbox_value.remove(value);
  978. var len = searchbox_value.length;
  979. if (len < 1 && !($('#del_' + name).length)) {
  980. $("#" + id + '_show').append('<input type="hidden" name="'+name+'[]" id="del_'+name+'" value="-1" />');
  981. }
  982. }
  983. //后台通用的提示
  984. function msg(value)
  985. {
  986. $("#dever_modal_no").click();
  987. if(!value.data)
  988. {
  989. value.data = value.msg;
  990. }
  991. if(value == 1)
  992. {
  993. location.reload();
  994. return;
  995. }
  996. submit();
  997. var url = '';
  998. if(value.data != 'reload' && value.status == 2)
  999. {
  1000. showAlert(value.msg, false, '错误提示');
  1001. //alert(value.data);
  1002. //location.reload();
  1003. return;
  1004. }
  1005. else if(value.data == 'reload')
  1006. {
  1007. if(typeof(config.layout) != "undefined" && $(config.layout).length)
  1008. {
  1009. pjax({url: location.href, container: config.layout})
  1010. }
  1011. else
  1012. {
  1013. location.reload();
  1014. }
  1015. return;
  1016. }
  1017. else
  1018. {
  1019. if(value.data.indexOf('http://') != -1)
  1020. {
  1021. url = value.data;
  1022. }
  1023. else if($("#url").length)
  1024. {
  1025. url = $("#url").val();
  1026. }
  1027. else
  1028. {
  1029. notify(value.data)
  1030. return;
  1031. }
  1032. if(url)
  1033. {
  1034. if(typeof(config.layout) != "undefined" && $(config.layout).length)
  1035. {
  1036. pjax({url: url, container: config.layout});
  1037. }
  1038. else
  1039. {
  1040. location.href = url;
  1041. }
  1042. }
  1043. else
  1044. {
  1045. if(typeof(config.layout) != "undefined" && $(config.layout).length)
  1046. {
  1047. pjax({url: location.href, container: config.layout});
  1048. }
  1049. else
  1050. {
  1051. location.reload();
  1052. }
  1053. }
  1054. }
  1055. return;
  1056. }
  1057. /**
  1058. * 处理多选问题,处理全选按钮
  1059. */
  1060. function checkbox()
  1061. {
  1062. if($(".autoload").length)
  1063. {
  1064. $(".autoload").each(function()
  1065. {
  1066. if($(this).get(0).checked == true)
  1067. {
  1068. $(this).removeClass('autoload');
  1069. $(this).load();
  1070. }
  1071. });
  1072. }
  1073. if($(".autoload_text").length)
  1074. {
  1075. $(".autoload_text").each(function()
  1076. {
  1077. if($(this).val())
  1078. {
  1079. $(this).removeClass('autoload_text');
  1080. $(this).load();
  1081. }
  1082. });
  1083. }
  1084. var name = 'checkbox-checkall';
  1085. var checkbox = $("." + name);
  1086. if(checkbox.length)
  1087. {
  1088. checkbox.unbind('click').bind('click', function()
  1089. {
  1090. var self = $(this);
  1091. $("." + name + "-" + self.val()).each(function()
  1092. {
  1093. $(this).get(0).checked = self.get(0).checked;
  1094. var next = $(this).next();
  1095. if($(this).get(0).checked == true)
  1096. {
  1097. if(next.length && next.attr('type') != 'checkbox' && next.attr('type') != 'hidden')
  1098. {
  1099. next.attr('disabled', false);
  1100. }
  1101. if($("#mul_type").length)
  1102. {
  1103. $("#mul_type").val(1);
  1104. }
  1105. }
  1106. else
  1107. {
  1108. if(next.length && next.attr('type') != 'checkbox' && next.attr('type') != 'hidden')
  1109. {
  1110. next.attr('disabled', true);
  1111. }
  1112. if($("#mul_type").length)
  1113. {
  1114. $("#mul_type").val(0);
  1115. }
  1116. }
  1117. if ($(this).attr('onclick') && $(this).attr('onclick').indexOf('show') > 0) {
  1118. inputShow($(this), 'col');
  1119. }
  1120. })
  1121. });
  1122. checkbox.each(function()
  1123. {
  1124. var self = $(this);
  1125. var len = $("." + name + "-" + self.val()).length;
  1126. $("." + name + "-" + self.val()).each(function()
  1127. {
  1128. $(this).unbind('click').bind('click', function()
  1129. {
  1130. var next = $(this).next();
  1131. if($(this).get(0).checked == true)
  1132. {
  1133. if ($("." + name + "-" + self.val()+":checked").length >= len) {
  1134. self.get(0).checked = true;
  1135. }
  1136. if(self.attr('type') == 'radio')
  1137. {
  1138. //如果父选项是radio类型,做下限制
  1139. //alert(1);
  1140. }
  1141. if($("#mul_type").length)
  1142. {
  1143. $("#mul_type").val(1);
  1144. }
  1145. if(next.length && next.attr('type') != 'checkbox' && next.attr('type') != 'hidden')
  1146. {
  1147. next.attr('disabled', false);
  1148. }
  1149. }
  1150. else
  1151. {
  1152. if(next.length && next.attr('type') != 'checkbox' && next.attr('type') != 'hidden')
  1153. {
  1154. next.attr('disabled', true);
  1155. }
  1156. }
  1157. var num = 0;
  1158. $("." + name + "-" + self.val()).each(function()
  1159. {
  1160. if($(this).get(0).checked == true)
  1161. {
  1162. num = 1;
  1163. }
  1164. });
  1165. var id = $(this).attr('name');
  1166. var hidden = id;
  1167. id = id.replace('[]', '');
  1168. if(num == 0)
  1169. {
  1170. self.get(0).checked = false;
  1171. if($("#mul_type").length)
  1172. {
  1173. $("#mul_type").val(0);
  1174. }
  1175. if (!$('#' + id).length) {
  1176. self.parent().append('<input type="hidden" value="0" id="'+id+'" name="'+hidden+'" />');
  1177. }
  1178. } else {
  1179. if ($('#' + id).length) {
  1180. $('#' + id).remove();
  1181. }
  1182. }
  1183. })
  1184. if($(this).get(0).checked == true)
  1185. {
  1186. self.get(0).checked = true;
  1187. if ($(this).attr('onclick') && $(this).attr('onclick').indexOf('show') > 0) {
  1188. inputShow($(this), 'col');
  1189. }
  1190. }
  1191. });
  1192. })
  1193. }
  1194. }
  1195. /**
  1196. * 处理双击编辑
  1197. */
  1198. function edit()
  1199. {
  1200. if($(".edit").length)
  1201. {
  1202. $(".edit").each(function()
  1203. {
  1204. $(this).bind('dblclick', function()
  1205. {
  1206. var col = $(this).attr('data-col');
  1207. var project = $(this).attr('data-project');
  1208. var table = $(this).attr('data-table');
  1209. var url = $(this).attr('data-url');
  1210. var id = $(this).attr('data-id');
  1211. var html = $(this).attr('data-content');
  1212. var type = $(this).attr('data-type');
  1213. if($(this).find(".edit-content").length)
  1214. {
  1215. html = $(this).find(".edit-content").html();
  1216. html = html.replace('<!--', '<');
  1217. html = html.replace('-->', '>');
  1218. }
  1219. if(html.indexOf('input') == -1)
  1220. {
  1221. if(type && type == 'textarea')
  1222. {
  1223. $(this).html('<textarea type="text" name="edit" id="edit" rows="10" cols="60" class="layui-input">'+html+'</textarea>');
  1224. }
  1225. else
  1226. {
  1227. $(this).html('<input type="text" name="edit" id="edit" value="'+html+'" class="layui-input">');
  1228. }
  1229. var self = $(this);
  1230. self.find("#edit").blur(function()
  1231. {
  1232. var value = self.find("#edit").val();
  1233. if(!value)
  1234. {
  1235. alert('不能为空');
  1236. return;
  1237. }
  1238. if($(this).find(".edit-content").length)
  1239. {
  1240. $(this).find(".edit-content").html(value);
  1241. }
  1242. else
  1243. {
  1244. self.attr('data-content', value);
  1245. }
  1246. self.html(value);
  1247. $.post(url, {project:project,table:table,value:value,where_id:id,col:col}, function(t)
  1248. {
  1249. notify('修改成功');
  1250. preview();
  1251. /*
  1252. if(type && type == 'textarea')
  1253. {
  1254. self.html(t);
  1255. }
  1256. */
  1257. })
  1258. })
  1259. }
  1260. });
  1261. })
  1262. }
  1263. }
  1264. function preview()
  1265. {
  1266. if($("#preview").length)
  1267. {
  1268. var time = Date.parse(new Date());
  1269. var src = $('#preview').attr('src').split('#');
  1270. $('#preview').attr('src', src[0] + '&' + time + '#' + src[1]);
  1271. }
  1272. }
  1273. function del()
  1274. {
  1275. if($(".oper_delete").length)
  1276. {
  1277. $(".oper_delete").each(function()
  1278. {
  1279. var href = $(this).attr('href');
  1280. $(this).attr('href', '#');
  1281. $(this).unbind('click');
  1282. $(this).bind('click', function()
  1283. {
  1284. del_act(href);
  1285. });
  1286. })
  1287. }
  1288. }
  1289. /**
  1290. * 处理删除
  1291. */
  1292. function del_act(href)
  1293. {
  1294. var index = layer.confirm('确定进行此项操作吗?', function()
  1295. {
  1296. $.getJSON(href + '&json=1&callback=?', {}, function(t)
  1297. {
  1298. msg(t);
  1299. layer.close(index);
  1300. })
  1301. });
  1302. }
  1303. /**
  1304. * 处理特殊加载的按钮
  1305. */
  1306. function load(href)
  1307. {
  1308. var index = layer.confirm('确定进行此项操作吗?', function()
  1309. {
  1310. if(href.indexOf('&') == -1)
  1311. {
  1312. href += '?json=1&callback=?';
  1313. }
  1314. else
  1315. {
  1316. href += '&json=1&callback=?';
  1317. }
  1318. $.getJSON(href, {}, function(t)
  1319. {
  1320. msg(t);
  1321. layer.close(index);
  1322. //location.reload();
  1323. })
  1324. })
  1325. /*
  1326. showAlert('确定进行此项操作吗?', function()
  1327. {
  1328. $("#dever_modal_no").click();
  1329. $.getJSON(href + '&json=1', {}, function(t)
  1330. {
  1331. msg(t);
  1332. })
  1333. });
  1334. */
  1335. }
  1336. /**
  1337. * 处理特殊加载的按钮
  1338. */
  1339. function jump(href, form)
  1340. {
  1341. if (form) {
  1342. var param = formData(form);
  1343. href += param[1];
  1344. }
  1345. location.href = href;
  1346. }
  1347. /**
  1348. * 处理change
  1349. */
  1350. function change()
  1351. {
  1352. if($(".change").length)
  1353. {
  1354. $(".change").each(function()
  1355. {
  1356. var key = $(this).attr('data-child');
  1357. /*
  1358. $('.' + key).each(function()
  1359. {
  1360. if($(this).find('select option:selected').val())
  1361. {
  1362. $(this).show();
  1363. $('#set_cate_id_child').get(0).value = $(this).attr('parent');
  1364. }
  1365. });
  1366. */
  1367. $(this).change(function()
  1368. {
  1369. $('.' + key).hide();
  1370. var v = $('.' + key + '_' + $(this).val());
  1371. var s = v.find('select');
  1372. s.change(function()
  1373. {
  1374. $('.' + key + '_value').val($(this).val());
  1375. })
  1376. if(v.length)
  1377. {
  1378. $('.' + key + '_value').val(s.val());
  1379. v.show();
  1380. }
  1381. else
  1382. {
  1383. $('.' + key + '_value').val(-1);
  1384. }
  1385. });
  1386. if($(this).val() > 0)
  1387. {
  1388. $(this).change();
  1389. }
  1390. });
  1391. }
  1392. }
  1393. /**
  1394. * 处理图库系统
  1395. */
  1396. function image()
  1397. {
  1398. if($(".dever-note").length)
  1399. {
  1400. $(".dever-note").each(function()
  1401. {
  1402. var key = $(this).attr('key');
  1403. $(this).inlineattachment(
  1404. {
  1405. uploadUrl: config.upload + '.drag?key='+ key
  1406. });
  1407. });
  1408. }
  1409. if($(".image_upload").length)
  1410. {
  1411. $(".image_upload").each(function(i)
  1412. {
  1413. var parent = $(this).parent().parent();
  1414. //alert(parent.attr('id'));
  1415. if(parent.attr('id') && parent.attr('id').indexOf('-child-0') != -1)
  1416. {
  1417. return;
  1418. }
  1419. loadUpload(i,$(this),$(this).attr('key'),config.upload + '.start', config.lib + 'upload/');//三个参数说明1:第几个上传框2:文件对象3:图片的基本配置标题
  1420. })
  1421. }
  1422. if($(".upload_show").length)
  1423. {
  1424. $(".upload_show").each(function(i)
  1425. {
  1426. var parent = $(this).parent().parent();
  1427. if(parent.attr('id') && parent.attr('id').indexOf('-child-0') != -1)
  1428. {
  1429. return;
  1430. }
  1431. showUpload(i,$(this),$(this).attr('key'),config.upload + '.files', config.lib + 'upload/', 1);//三个参数说明1:第几个上传框2:文件对象3:图片的基本配置标题
  1432. })
  1433. }
  1434. if($(".upload_show_editor").length)
  1435. {
  1436. $(".upload_show_editor").each(function(i)
  1437. {
  1438. var parent = $(this).parent().parent();
  1439. if(parent.attr('id') && parent.attr('id').indexOf('-child-0') != -1)
  1440. {
  1441. return;
  1442. }
  1443. showUpload(i,$(this),$(this).attr('key'),config.upload + '.files', config.lib + 'upload/', 3);//三个参数说明1:第几个上传框2:文件对象3:图片的基本配置标题
  1444. })
  1445. }
  1446. }
  1447. /**
  1448. * 修改密码
  1449. */
  1450. function pass(e)
  1451. {
  1452. var html = '<style>.password_edit div{margin:10px;}.password_edit input{width:200px;}</style><div class="password_edit">';
  1453. html += '<div><label class="layui-form-label">旧密码:</label><input type="password" class="form-control form_margin layui-input" id="edit_old_password" /></div>';
  1454. html += '<div><label class="layui-form-label">新密码:</label><input type="password" class="form-control form_margin layui-input" id="edit_new_password" /></div>';
  1455. html += '</div>';
  1456. var edit = function()
  1457. {
  1458. var old_password = $("#edit_old_password").val();
  1459. var new_password = $("#edit_new_password").val();
  1460. if(!old_password || !new_password)
  1461. {
  1462. alert('请输入密码');
  1463. return;
  1464. }
  1465. if(old_password == new_password)
  1466. {
  1467. alert('旧密码和新密码相同');
  1468. return;
  1469. }
  1470. $.post(config.host + 'auth.password', {old:old_password,new:new_password}, function(t)
  1471. {
  1472. alert(t);
  1473. })
  1474. };
  1475. showAlert(html, edit, '修改密码');
  1476. /*
  1477. $('#dever_modal_body').html(html);
  1478. $('#dever_modal_title').html('修改密码');
  1479. */
  1480. }
  1481. var MSG = [];
  1482. /**
  1483. * 打开弹窗
  1484. */
  1485. //function showMsg(title, e, id, func)
  1486. function showMsg(title, e, id, func, param)
  1487. {
  1488. if(id.indexOf('http://') == -1)
  1489. {
  1490. if($(id).length)
  1491. {
  1492. var html = $(id).html();
  1493. if($(id).html())
  1494. {
  1495. var html = $(id).html();
  1496. MSG[id] = html;
  1497. $(id).html('');
  1498. }
  1499. else
  1500. {
  1501. var html = MSG[id];
  1502. }
  1503. }
  1504. else
  1505. {
  1506. var html = id;
  1507. }
  1508. showAlert(html, func, title);
  1509. /*
  1510. $('#dever_modal_body').html(html);
  1511. $('#dever_modal_title').html(title);
  1512. if (func) {
  1513. $("#dever_modal_yes").unbind('click').bind('click', func);
  1514. } else {
  1515. $("#dever_modal_yes").unbind('click').bind('click', function(){$("#dever_modal_no").click()});
  1516. }
  1517. */
  1518. }
  1519. else
  1520. {
  1521. var url = id;
  1522. var send = {};
  1523. if (param) {
  1524. send = param;
  1525. }
  1526. if (e && e.attr('msg-send')) {
  1527. send.data = e.attr('msg-send');
  1528. }
  1529. if (url.indexOf('?') != -1) {
  1530. url = url + '&';
  1531. } else {
  1532. url = url + '?';
  1533. }
  1534. $.getJSON(url+'json=1',send,function(t)
  1535. {
  1536. t = t.data;
  1537. showAlert(t, func, t);
  1538. /*
  1539. $('#dever_modal_body').html(t);
  1540. $('#dever_modal_title').html(title);
  1541. if(func)
  1542. {
  1543. $("#dever_modal_yes").unbind('click').bind('click', func);
  1544. }
  1545. */
  1546. });
  1547. }
  1548. }
  1549. function updateMsg(id)
  1550. {
  1551. $("#"+id).submit();
  1552. }
  1553. function showAlert(msg, func, title, index)
  1554. {
  1555. if (!title) {
  1556. title = $("#dever-name").html() + '提醒您';
  1557. }
  1558. var type = 0;
  1559. if (msg.indexOf('<') != -1) {
  1560. type = 1;
  1561. }
  1562. var config = {
  1563. type: 0,
  1564. title: title,
  1565. shade: 0.1,
  1566. shadeClose : true,
  1567. content: msg
  1568. };
  1569. config.scrollbar = false;
  1570. if (type == 1) {
  1571. if (index) {
  1572. config.zIndex = index;
  1573. config.type = 1;
  1574. config.btn = ['确定'];
  1575. }
  1576. config.area = '800px';
  1577. //config.type = 1;
  1578. }
  1579. if (func) {
  1580. config.yes = function(index)
  1581. {
  1582. func(index);
  1583. };
  1584. } else {
  1585. config.yes = function(index)
  1586. {
  1587. layer.close(index);
  1588. };
  1589. }
  1590. var index = layer.open(config);
  1591. }
  1592. function fastEdit(e, url, title, col, index)
  1593. {
  1594. var func = function()
  1595. {
  1596. submit_action();
  1597. };
  1598. var send = {};
  1599. send.col = col;
  1600. $.get(url,send,function(t)
  1601. {
  1602. var html = '';
  1603. var valid = '';
  1604. if ($(t).find('form').length && $(t).find('#valid').length) {
  1605. var html = $(t).find('form').prop("outerHTML");
  1606. var valid = $(t).find('#valid').prop("outerHTML");
  1607. html = html + valid;
  1608. if (html.indexOf('left: 740px') != -1) {
  1609. html = html.replace('left: 740px', 'left:583px;')
  1610. }
  1611. } else {
  1612. html = t;
  1613. func = false;
  1614. }
  1615. if (index == 1) {
  1616. showAlert(html, func, title, 19850422);
  1617. } else {
  1618. showAlert(html, func, title);
  1619. }
  1620. $('.layui-layer-content').css('overflow-x', 'hidden');
  1621. $('#update_button').hide();
  1622. layui.use(['formSelects'], function(){
  1623. $("select").each(function()
  1624. {
  1625. if ($(this).attr('xm-select')) {
  1626. layui.formSelects.render($(this).attr('xm-select'));
  1627. }
  1628. })
  1629. });
  1630. init(560);
  1631. });
  1632. }
  1633. /*
  1634. var test =
  1635. {
  1636. refreshPage: false,
  1637. addAjaxFlag: true,
  1638. //添加收藏
  1639. add: function(cfg)
  1640. {
  1641. }
  1642. }
  1643. */
  1644. function showToggle(e)
  1645. {
  1646. var id = e.attr('toggle');
  1647. var child = e.attr('toggle_child');
  1648. var parent = e.parent();
  1649. parent.parent().find('li').removeClass('active');
  1650. parent.addClass('active');
  1651. $(child).fadeOut(100);
  1652. $(id).fadeIn(500);
  1653. initEditor($(id).find('.editor'));
  1654. }
  1655. function select_linkage(level, id, url, name, value, valid, w, total, search, level_param)
  1656. {
  1657. var e = '#' + id;
  1658. var parent = value.split(',');
  1659. var cur = parent[0];
  1660. parent.remove(cur);
  1661. value = parent.join(',');
  1662. var html = '';
  1663. var old = level;
  1664. if (!total) {
  1665. level_id = 0;
  1666. } else {
  1667. if (level >= total) {
  1668. //$(e).show();
  1669. return;
  1670. }
  1671. level_id = $(e + '_' + level).val();
  1672. level = parseInt(level) + 1;
  1673. }
  1674. $.getJSON(url + '?json=1', {level_search:search, level_id:level_id, level_num:level,level_param:level_param}, function(t) {
  1675. var check = '';
  1676. if (t.status == 1) {
  1677. var total = t.data.level_total;
  1678. var data = t.data.list;
  1679. if(!$(e + '_' + level).length) {
  1680. html = '<select style="'+w+'display:inline;margin-top:10px;" class="update_value form-control '+valid+'" id="'+id+'_'+level+'" name="'+name+'[]" onchange="select_linkage(\''+level+'\', \''+id+'\', \''+url+'\', \''+name+'\', \''+value+'\', \''+valid+'\', \''+w+'\', '+total+', \''+search+'\', \''+level_param+'\');">';
  1681. }
  1682. for (a in data) {
  1683. if (data[a].value) {
  1684. check = '';
  1685. if (cur == data[a].value) {
  1686. check = ' selected';
  1687. }
  1688. html += '<option value="'+data[a].value+'" '+check+'>'+data[a].name+'</option>';
  1689. }
  1690. }
  1691. if(!$(e + '_' + level).length) {
  1692. html += '</select><span>&nbsp;&nbsp;</span>';
  1693. $(e).append(html);
  1694. $(e + '_' + level).change();
  1695. } else {
  1696. $(e + '_' + level).html(html);
  1697. $(e + '_' + level).change();
  1698. }
  1699. } else {
  1700. $(e + '_' + old).nextAll('select').remove();
  1701. $(e + '_' + old).next('span').nextAll('span').remove();
  1702. }
  1703. /*
  1704. if ($('#' + name + '_level_value').length) {
  1705. var total = $(id).find('select').length;
  1706. $('#' + name + '_level_value').val(total);
  1707. }
  1708. if ($('#' + name + '_up_value').length) {
  1709. $('#' + name + '_up_value').val($(id + '_-2').val());
  1710. }
  1711. */
  1712. });
  1713. }
  1714. /*
  1715. function select_mul(level, id, url, name, value, valid, w, num)
  1716. {
  1717. if(level == 0)
  1718. {
  1719. $(id).find('select').remove();
  1720. $(id).find('span').remove();
  1721. return;
  1722. }
  1723. var parent = value.split(',');
  1724. var cur = parent[0];
  1725. parent.remove(cur);
  1726. value = parent.join(',');
  1727. var html = '';
  1728. var old = level;
  1729. if(level != -1)
  1730. {
  1731. if($(id + '_' + level).length)
  1732. {
  1733. level = $(id + '_' + level).val();
  1734. }
  1735. alert(level);
  1736. if(level == 0)
  1737. {
  1738. $(id + '_' + old).nextAll('select').remove();
  1739. $(id + '_' + old).next('span').nextAll('span').remove();
  1740. if($('#' + name + '_level_value').length)
  1741. {
  1742. var total = $(id).find('select').length;
  1743. $('#' + name + '_level_value').val(total);
  1744. }
  1745. if(old == -2 && $('#' + name + '_value_value').length)
  1746. {
  1747. $('#' + name + '_value_value').val(level);
  1748. }
  1749. return;
  1750. }
  1751. if(old == -2)
  1752. {
  1753. $(id + '_' + old).nextAll('select').remove();
  1754. $(id + '_' + old).next('span').nextAll('span').remove();
  1755. }
  1756. if($('#' + name + '_value_value').length)
  1757. {
  1758. $('#' + name + '_value_value').val(level);
  1759. }
  1760. }
  1761. var total = $(id).find('select').length;
  1762. if(num > 0 && total >= num)
  1763. {
  1764. return;
  1765. }
  1766. var get = url.replace('{level}', level);
  1767. if(level == -1)
  1768. {
  1769. level = -2;
  1770. }
  1771. if(!$(id + '_' + level).length)
  1772. {
  1773. $.getJSON(get + '&json=1', {total:total,level:level}, function(t)
  1774. {
  1775. var check = '';
  1776. if(t.status == 1)
  1777. {
  1778. html = '<select style="'+w+'display:inline;margin-top:10px;" class="update_value form-control '+valid+' dever-mul-'+name+'_'+level+'" name="'+name+'[]" onchange="select_mul(\''+level+'\', \''+id+'\', \''+url+'\', \''+name+'\', \''+value+'\', \''+valid+'\', \''+w+'\', '+num+');">';
  1779. console.log(t.data);
  1780. for(a in t.data)
  1781. {
  1782. if(t.data[a].value)
  1783. {
  1784. check = '';
  1785. if(cur == t.data[a].value)
  1786. {
  1787. check = ' selected';
  1788. }
  1789. html += '<option value="'+t.data[a].value+'" '+check+'>'+t.data[a].name+'</option>';
  1790. }
  1791. }
  1792. html += '</select><span>&nbsp;&nbsp;</span>';
  1793. $(id).append(html);
  1794. $(id + '_' + level).change();
  1795. }
  1796. else
  1797. {
  1798. $(id + '_' + old).nextAll('select').remove();
  1799. $(id + '_' + old).next('span').nextAll('span').remove();
  1800. }
  1801. if($('#' + name + '_level_value').length)
  1802. {
  1803. var total = $(id).find('select').length;
  1804. $('#' + name + '_level_value').val(total);
  1805. }
  1806. if($('#' + name + '_up_value').length)
  1807. {
  1808. $('#' + name + '_up_value').val($(id + '_-2').val());
  1809. }
  1810. });
  1811. }
  1812. }
  1813. */
  1814. //处理更新页面的一些功能,写到一起吧
  1815. var dever_update =
  1816. {
  1817. addIndex : 2,
  1818. index : [],
  1819. auto : false,
  1820. save_key : '',
  1821. init : function()
  1822. {
  1823. var self = this;
  1824. self.index = [];
  1825. // 增加整个更新的表单
  1826. if($(".dever_update_add").length)
  1827. {
  1828. $('.dever_update_add').unbind('click').bind('click', function()
  1829. {
  1830. self.add($(this));
  1831. })
  1832. }
  1833. /* 以后再增加 同时更新另外一个表
  1834. if($(".form-add-content").length)
  1835. {
  1836. var url = config.host + 'auth.password';
  1837. var url = 'http://localhost/dever/manage/?database.update?project=weixin&table=message&menu=weixin&menu_id=39&ajax=1';
  1838. $.get(url, function(t)
  1839. {
  1840. $(".form-add-content").html(t);
  1841. init();
  1842. })
  1843. }
  1844. */
  1845. //增加某一部分表单
  1846. if($(".dever_form_add").length)
  1847. {
  1848. $('.dever_form_add').each(function()
  1849. {
  1850. var key = $.attr('toggle_key');
  1851. if(typeof(self.index[key]) == "undefined")
  1852. {
  1853. self.index[key] = 0;
  1854. }
  1855. $(this).unbind('click').bind('click', function()
  1856. {
  1857. self.append($(this));
  1858. })
  1859. })
  1860. self.del();
  1861. }
  1862. // 开启自动保存
  1863. if($("#struct").length)
  1864. {
  1865. var save = $("#struct").attr('save');
  1866. if(save == 'yes')
  1867. {
  1868. //检测
  1869. self.save_key = location.href + 'test';
  1870. self.check();
  1871. }
  1872. }
  1873. if($('.dever-note').length)
  1874. {
  1875. $('.dever-note').each(function()
  1876. {
  1877. var mditor = new Mditor($(this),{
  1878. fixedHeight:true
  1879. });
  1880. mditor.openPreview();
  1881. })
  1882. }
  1883. },
  1884. save : function()
  1885. {
  1886. //var data = $("#data-1").html();
  1887. var data = [];
  1888. $(".update_value").each(function(i)
  1889. {
  1890. if($(this).attr("update_type") == 'checked')
  1891. {
  1892. data[i] = $(this).get(0).checked;
  1893. }
  1894. else if($(this).attr("update_type") == 'html')
  1895. {
  1896. data[i] = $(this).html();
  1897. }
  1898. else if($(this).attr("update_type") == 'src')
  1899. {
  1900. data[i] = $(this).attr('src');
  1901. }
  1902. else
  1903. {
  1904. data[i] = $(this).val();
  1905. }
  1906. });
  1907. store.set(this.save_key, data.join('|||'));
  1908. //console.info(data);
  1909. },
  1910. recover : function()
  1911. {
  1912. var index = layer.confirm('确定恢复上次保存的数据吗?', function()
  1913. {
  1914. var data = store.get(this.save_key).split('|||');
  1915. if(data)
  1916. {
  1917. var value = $(".update_value");
  1918. for(var k in data)
  1919. {
  1920. var e = value.eq(k);
  1921. if(e.attr('update_type') == 'checked')
  1922. {
  1923. if(data[k] == 'true')
  1924. {
  1925. e.get(0).checked = true;
  1926. }
  1927. else
  1928. {
  1929. e.get(0).checked = false;
  1930. }
  1931. }
  1932. else if(e.attr('update_type') == 'html')
  1933. {
  1934. e.html(data[k]);
  1935. }
  1936. else if(e.attr('update_type') == 'src')
  1937. {
  1938. e.attr('src', data[k]);
  1939. }
  1940. else
  1941. {
  1942. if(e.attr('id'))
  1943. {
  1944. var id = e.attr('id');
  1945. if(typeof(editors[id]) != "undefined")
  1946. {
  1947. editors[id].html(data[k]);
  1948. }
  1949. }
  1950. e.val(data[k]);
  1951. }
  1952. }
  1953. store.set(this.save_key, '');
  1954. this.check();
  1955. }
  1956. })
  1957. },
  1958. check : function()
  1959. {
  1960. var data = store.get(this.save_key);
  1961. var self = this;
  1962. if(data)
  1963. {
  1964. $(".dever_save").unbind('click').bind('click', function()
  1965. {
  1966. self.recover();
  1967. }).show();
  1968. }
  1969. else
  1970. {
  1971. $(".dever_save").hide();
  1972. self.auto = setInterval(function(){self.save()}, 3000);
  1973. }
  1974. },
  1975. del : function()
  1976. {
  1977. var self = this;
  1978. if($(".dever_form_delete").length)
  1979. {
  1980. $('.dever_form_delete').each(function()
  1981. {
  1982. $(this).unbind('click').bind('click', function()
  1983. {
  1984. var parent = $(this).parent();
  1985. var id = parent.attr('id');
  1986. var index = parseInt($('#tab-' + id).attr('toggle_id'));
  1987. var key = $('#tab-' + id).attr('toggle_key');
  1988. if(index <= 1 && self.index[key] <= index)
  1989. {
  1990. }
  1991. else if(index <= 1 && self.index[key] > index)
  1992. {
  1993. index = index+1;
  1994. $("#tab-"+key+"-child-" + index).click();
  1995. }
  1996. else
  1997. {
  1998. index = index-1;
  1999. $("#tab-"+key+"-child-" + index).click();
  2000. };
  2001. $('#tab-' + id).parent().remove();
  2002. parent.remove();
  2003. self.index[key]--;
  2004. })
  2005. })
  2006. }
  2007. },
  2008. append : function(e)
  2009. {
  2010. var self = this;
  2011. var key = e.attr('toggle_key');
  2012. var child = '.dever_'+key+'_child';
  2013. if(typeof(self.index[key]) == "undefined")
  2014. {
  2015. self.index[key] = 0;
  2016. }
  2017. if(self.index[key] <= 0)
  2018. {
  2019. self.index[key] = $(child).length;
  2020. }
  2021. if(self.index[key] > 30)
  2022. {
  2023. layer.showAlert('最多只能增加30条');
  2024. return;
  2025. }
  2026. var p = e.parent();
  2027. var id = key + '-child-' + self.index[key];
  2028. var name = '第' + (self.index[key]) + '条';
  2029. p.before('<li><a href="javascript:;" id="tab-'+id+'" toggle_key="'+key+'" toggle_id="'+self.index[key]+'" toggle_child="'+child+'" toggle="#'+id+'" onclick="showToggle($(this))">'+name+'</a></li>');
  2030. var e = e.parent().parent();
  2031. var n = e.next();
  2032. var p = e.parent();
  2033. var content = n.html();
  2034. content = content.replaceAll('_c_', '_c_' + (self.index[key]-1) + '_i_');
  2035. content = '<div id="'+id+'" style="display:none;" class="'+n.attr('class')+' dever_form_add_child">' + content + '</div>';
  2036. p.append(content);
  2037. if ($("#" + id).find('.ke-container').length >= 1) {
  2038. $("#" + id).find('.ke-container').eq(0).remove();
  2039. }
  2040. $('#update_' + key +'_c_' + (self.index[key]-1) + '_i_' + 'order_value').val(parseInt($('#update_' + key +'_c_' + (self.index[key]-2) + '_i_' + 'order_value').val())+1);
  2041. self.del();
  2042. //$("html,body").animate({scrollTop:$('.dever_form_add_child').eq(this.appendIndex).offset().top},500);
  2043. self.index[key]++;
  2044. image();
  2045. loadShow();
  2046. autocomplete();
  2047. change();
  2048. },
  2049. add : function(e)
  2050. {
  2051. var self = this;
  2052. var p = e.parent();
  2053. var id = 'data-' + this.addIndex;
  2054. var name = '新增数据-' + (this.addIndex-1);
  2055. p.before('<li><a href="#'+id+'" data-toggle="tab">'+name+'</a></li>');
  2056. var content = $("#content").find('.tab-pane').eq(0).html();
  2057. content = content.replaceAll('update_', 'update_' + this.addIndex + '__');
  2058. content = '<div class="tab-pane fade" id="'+id+'">' + content + '</div>';
  2059. $("#content").append(content);
  2060. $('#update_' + this.addIndex + '__where_id').val('-1');
  2061. this.addIndex++;
  2062. }
  2063. }
  2064. $.fn.pasteEvents = function( delay ) {
  2065. if (delay == undefined) delay = 20;
  2066. return $(this).each(function() {
  2067. var $el = $(this);
  2068. $el.on("paste", function() {
  2069. $el.trigger("prepaste");
  2070. setTimeout(function() { $el.trigger("postpaste"); }, delay);
  2071. });
  2072. });
  2073. };
  2074. $("textarea").on("postpaste", function()
  2075. {
  2076. if($(this).val().indexOf('<') != -1)
  2077. {
  2078. $(this).val(toMarkdown($(this).val()));
  2079. }
  2080. }).pasteEvents();