main.js 70 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105
  1. //这里的代码是最早写的,很乱,以后整合优化
  2. var editors = [];
  3. var editors_index = [];
  4. var tables = [];
  5. var select = '';
  6. var submitButton = '';
  7. var editorWidth = 0;
  8. var admingroup = false;
  9. String.prototype.replaceAll = function(reallyDo, replaceWith, ignoreCase) {
  10. if (!RegExp.prototype.isPrototypeOf(reallyDo)) {
  11. return this.replace(new RegExp(reallyDo, (ignoreCase ? "gi": "g")), replaceWith);
  12. } else {
  13. return this.replace(reallyDo, replaceWith);
  14. }
  15. }
  16. Array.prototype.remove = function(val) {
  17. var index = -1;
  18. for(var i = 0; i < this.length; i++)
  19. {
  20. if(this[i] == val)
  21. {
  22. index = i;
  23. }
  24. }
  25. if (index > -1) {
  26. this.splice(index, 1);
  27. }
  28. };
  29. Array.prototype.replaceOne = function(old, val) {
  30. var index = -1;
  31. for(var i = 0; i < this.length; i++)
  32. {
  33. if(this[i] == old)
  34. {
  35. index = i;
  36. }
  37. }
  38. if (index > -1) {
  39. this.splice(index, 1, val);
  40. }
  41. };
  42. $(document).ready(function()
  43. {
  44. //init();
  45. });
  46. function init(ew)
  47. {
  48. if (ew) {
  49. editorWidth = ew;
  50. } else {
  51. editorWidth = 0;
  52. }
  53. editors = [];
  54. editors_index = [];
  55. initEditor();
  56. select = '';
  57. edit();
  58. del();
  59. checkbox();
  60. image();
  61. change();
  62. autocomplete();
  63. template();
  64. submit();
  65. loadShow();
  66. initPic();
  67. initDate();
  68. initLayui();
  69. initColor();
  70. initUpdate();
  71. initClipboard();
  72. initEmoji();
  73. initSearch();
  74. //更新页面一些功能,上边的一些功能等找时间再优化吧
  75. dever_update.init();
  76. hljs.initHighlightingOnLoad();
  77. table();
  78. }
  79. function initSearch()
  80. {
  81. $("#form1 input").bind('keypress', function (event) {
  82. if (event.keyCode == 13) {
  83. $("#search_button").click();
  84. }
  85. });
  86. }
  87. function initEmoji()
  88. {
  89. if ($('.dever-emoji').length) {
  90. $('.dever-emoji').each(function()
  91. {
  92. emoji($(this), $(this).html());
  93. })
  94. }
  95. }
  96. function emoji(e, content)
  97. {
  98. var handle = function()
  99. {
  100. e.html(twemoji.parse(content)).show(200);
  101. };
  102. if (typeof jEmoji != 'object') {
  103. $.getScript('//twemoji.maxcdn.com/2/twemoji.min.js?11.4', function() {
  104. /*
  105. $("head").append("<link>");
  106. var css = $("head").children(":last");
  107. css.attr({
  108. rel: "stylesheet",
  109. type: "text/css",
  110. href: config.script + '/lib/emoji/emoji.css'
  111. });
  112. */
  113. return handle();
  114. });
  115. } else {
  116. return handle();
  117. }
  118. }
  119. function checkClick(e)
  120. {
  121. var objEvt = $._data(e[0], "events");
  122. if (objEvt && !objEvt["click"]) {
  123. return false;
  124. }
  125. return true;
  126. }
  127. function initClipboard()
  128. {
  129. var clipboard = new ClipboardJS('.clipboard');
  130. clipboard.on('success', function(e) {
  131. notify('复制成功', e.trigger);
  132. e.clearSelection();
  133. });
  134. clipboard.on('error', function(e) {
  135. notify('复制失败', e.trigger);
  136. });
  137. }
  138. function initUpdate()
  139. {
  140. if ($('.update_show_editor').length) {
  141. $('.update_show_editor').each(function() {
  142. $(this).bind('click', function()
  143. {
  144. var url = $(this).attr('key');
  145. var value = $(this).attr('editor_id');
  146. var title = $(this).attr('value');
  147. var send = '';
  148. if ($(this).attr('data-value')) {
  149. send = $(this).attr('data-value');
  150. }
  151. $.post(url, {value:send}, function(t)
  152. {
  153. var func = function() {
  154. var url = $('#editor_applet_pic').val();
  155. var appid = $('#editor_applet_id').val();
  156. var path = $('#editor_applet_path').val();
  157. var link = $('#editor_applet_link').val();
  158. if (!appid) {
  159. //alert('请选择小程序');
  160. //return;
  161. }
  162. if (!path) {
  163. alert('请填写路径');
  164. return;
  165. }
  166. if (!url) {
  167. alert('请上传封面');
  168. return;
  169. }
  170. var w = 750/2;
  171. KindEditor.insertHtml('#' + value, '<img src="'+url+'" style="width:'+w+'px;" data-applet="'+url+'||'+appid+'||'+path+'||'+link+'"/>');
  172. layer.closeAll();
  173. };
  174. showAlert(t, func, title);
  175. image();
  176. })
  177. })
  178. });
  179. }
  180. }
  181. function initLayui()
  182. {
  183. layui.use('layer', function() {
  184. var layer = layui.layer;
  185. layer.ready(function() {
  186. $(".dever-img").each(function()
  187. {
  188. layer.photos({
  189. photos: '#' + $(this).attr('id'),
  190. shade : 0.5
  191. });
  192. });
  193. });
  194. });
  195. }
  196. function initColor()
  197. {
  198. if ($('.dever-color').length) {
  199. $('.dever-color').each(function()
  200. {
  201. var self = $(this);
  202. var val = self.val();
  203. if (!val) {
  204. val = '#000000';
  205. }
  206. self.css('border-right', '40px solid '+val);
  207. self.colpick({
  208. layout:'hex',
  209. submit:0,
  210. colorScheme:'dark',
  211. color: val,
  212. onChange : function (hsb,hex,rgb,el,bySetColor) {
  213. $(el).css('border-color','#'+hex);
  214. if(!bySetColor) $(el).val('#' + hex);
  215. }
  216. }).keyup(function(){
  217. $(this).colpickSetColor(this.value);
  218. });
  219. })
  220. }
  221. }
  222. function formData(form)
  223. {
  224. var d = {};
  225. var t = $(form).serializeArray();
  226. var u = '';
  227. $.each(t, function() {
  228. if (this.name.indexOf('search_') != -1) {
  229. d[this.name] = this.value;
  230. u += '&' + this.name + '=' + this.value;
  231. }
  232. });
  233. return [d,u];
  234. }
  235. function initMenu()
  236. {
  237. if(typeof(config.layout) != "undefined")
  238. {
  239. $('.list-unstyled li').each(function(j)
  240. {
  241. $(this).unbind('click').bind('click', function()
  242. {
  243. if ($(this).index() == i) {
  244. //return;
  245. }
  246. $('.list-unstyled .active').each(function()
  247. {
  248. $(this).attr('class', '');
  249. $(this).find('a').attr('class', '');
  250. })
  251. $(this).attr('class', 'active');
  252. var a = $(this).find('a');
  253. a.attr('class', 'subdrop');
  254. //alert($(this).attr('class'));
  255. })
  256. });
  257. /*
  258. $('.project-list').each(function(i)
  259. {
  260. $(this).unbind('click').bind('click', function()
  261. {
  262. if ($(this).index() == i) {
  263. return;
  264. }
  265. $('.project-list').each(function()
  266. {
  267. $(this).find('i').parent().attr('class', '');
  268. $(this).find('ul').attr('class', 'list-unstyled upload-menu');
  269. })
  270. $(this).find('i').parent().attr('class', 'active');
  271. $(this).find('ul').attr('class', 'list-unstyled upload-menu in');
  272. })
  273. });
  274. */
  275. }
  276. }
  277. function setOption(e, id)
  278. {
  279. var s = $("select[name="+id+"]");
  280. var v = s.val();
  281. if (!select) {
  282. select = s.clone();
  283. }
  284. s.find('option[parent]').remove();
  285. //查找出需要显示的option并复制
  286. var options = select.find("option[parent="+e.val()+"]").clone();
  287. //将需要显示的option添加到select中
  288. s.append(options);
  289. //因为option.remove()不会刷新控件,需要将新的option切换上去
  290. //这里排除了options.size() == 0的情况
  291. var state = 2;
  292. s.find('option').each(function()
  293. {
  294. var val = $(this).val();
  295. if (v == val) {
  296. state = 1;
  297. }
  298. });
  299. if (state == 1) {
  300. s.val(v);
  301. } else {
  302. s.val(0);
  303. }
  304. }
  305. function table()
  306. {
  307. if ($('.table-responsive').length) {
  308. $('.table-responsive[data-pattern]').each(function()
  309. {
  310. $(this).responsiveTable('update');
  311. });
  312. }
  313. }
  314. function pjax(param)
  315. {
  316. param.timeout = 8000;
  317. $.pjax(param);
  318. }
  319. function initDate()
  320. {
  321. $.datetimepicker.setLocale('ch');
  322. if($(".manage_date").length)
  323. {
  324. $(".manage_date").each(function()
  325. {
  326. $(this).datetimepicker(
  327. {
  328. //datepicker:false,
  329. format:'Y-m-d H:i:s',
  330. lang:'ch'
  331. });
  332. });
  333. }
  334. if($(".manage_day").length)
  335. {
  336. $(".manage_day").each(function()
  337. {
  338. $(this).datetimepicker(
  339. {
  340. //inline:true,
  341. timepicker:false,
  342. format:'Y-m-d',
  343. lang:'ch'
  344. });
  345. });
  346. }
  347. if($(".manage_sday").length)
  348. {
  349. $(".manage_sday").each(function()
  350. {
  351. $(this).datetimepicker(
  352. {
  353. //inline:true,
  354. timepicker:false,
  355. format:'Y-m-d',
  356. lang:'ch'
  357. });
  358. });
  359. }
  360. if($(".manage_sdate").length)
  361. {
  362. $(".manage_sdate").each(function()
  363. {
  364. $(this).datetimepicker(
  365. {
  366. //datepicker:false,
  367. format:'Y-m-d H:i:s',
  368. lang:'ch'
  369. });
  370. });
  371. }
  372. layui.use('laydate', function() {
  373. var laydate = layui.laydate;
  374. if ($('.manage_year').length) {
  375. $('.manage_year').each(function(i) {
  376. $(this).attr('id', 'manage_year_' + i);
  377. laydate.render({
  378. elem: '#manage_year_' + i,
  379. type: 'year',
  380. });
  381. })
  382. }
  383. if ($('.manage_month').length) {
  384. $('.manage_month').each(function(i) {
  385. $(this).attr('id', 'manage_month_' + i);
  386. laydate.render({
  387. elem: '#manage_month_' + i,
  388. type: 'month',
  389. });
  390. })
  391. }
  392. });
  393. }
  394. function initPic()
  395. {
  396. $('a[rel]').fancybox();
  397. }
  398. function initEditor(e)
  399. {
  400. if (!e) {
  401. e = $('.editor');
  402. }
  403. if(e.length)
  404. {
  405. var param = false;
  406. var editor = [];
  407. e.each(function()
  408. {
  409. var parent = $(this).parent().parent();
  410. //alert(parent.attr('id'));
  411. if(parent.attr('id') && parent.attr('id').indexOf('-child-0') != -1)
  412. {
  413. return;
  414. }
  415. if (!param) {
  416. param = loadEditorParam($(this));
  417. }
  418. editor.push($(this).attr('id'));
  419. });
  420. if (editor) {
  421. for (var i in editor) {
  422. var id = editor[i];
  423. if (typeof(id) == 'string' && !editors[id]) {
  424. param.index = editors_index.length;
  425. editors[id] = KindEditor.create('#' + id, param);
  426. editors_index.push(id);
  427. }
  428. }
  429. }
  430. }
  431. if ($('.editor_tool').length) {
  432. $('.editor_tool').each(function()
  433. {
  434. $(this).click(function()
  435. {
  436. var tool = $(this).attr('tool');
  437. var id = $(this).attr('editor_id');
  438. editors[id].clickToolbar(tool);
  439. })
  440. });
  441. }
  442. }
  443. function loadEditorParam(e)
  444. {
  445. if(!e.length)
  446. {
  447. return;
  448. }
  449. var key = e.attr('key');
  450. var media = e.attr('media');
  451. var token = e.attr('token');
  452. var host = e.attr('host');
  453. var domain = e.attr('domain');
  454. var path = e.attr('path');
  455. var upload_search = e.attr('upload_search');
  456. var upload_search_value = e.attr('upload_search_value');
  457. var yun = {};
  458. if (token && host) {
  459. yun.token = token;
  460. yun.host = host;
  461. yun.domain = domain;
  462. yun.path = path;
  463. }
  464. if (!media) {
  465. media = key;
  466. }
  467. var view = config.upload.replace('save', 'view');
  468. var param = {
  469. height : "400px",
  470. allowImageUpload: true, //上传图片框本地上传的功能,false为隐藏,默认为true
  471. allowImageRemote : true, //上传图片框网络图片的功能,false为隐藏,默认为true
  472. allowFileManager : true, //浏览图片空间
  473. allowMediaUpload : true,
  474. filterMode : true, //HTML特殊代码过滤
  475. themeType : 'default',
  476. filePostName : 'file',
  477. dialogOffset : 0, //对话框距离页面顶部的位置,默认为0居中,
  478. uploadJson : config.upload + '.kindeditor?key=' + key + '&search=' + upload_search_value,
  479. uploadResJson : config.uploadRes + '.kindeditor?key=' + key + '&search=' + upload_search_value,
  480. uploadMediaJson : config.upload + '.kindeditor?key=' + media + '&search=' + upload_search_value,
  481. uploadYunJson : yun,
  482. fileManagerJson : view + '.files?key=' + media + '&upload_search=' + upload_search,
  483. htmlTags : {
  484. section : ['id', 'class', 'color', 'size', 'face', '.background-color'],
  485. font : ['id', 'class', 'color', 'size', 'face', '.background-color'],
  486. span : [
  487. 'id', 'class', '.color', '.background-color', '.font-size','.letter-spacing', '.background',
  488. '.font-weight', '.font-style', '.text-decoration', '.vertical-align', '.line-height'
  489. ],
  490. div : [
  491. 'id', 'class', 'data-applet', 'data-file', 'data-id', 'data-key','.dever-video', 'align', '.border', '.margin', '.padding', '.text-align', '.color',
  492. '.background-color', '.font-size','.letter-spacing', '.font-weight', '.background',
  493. '.font-style', '.text-decoration', '.vertical-align', '.margin-left'
  494. ],
  495. table: [
  496. 'id', 'class', 'border', 'cellspacing', 'cellpadding', 'width', 'height', 'align', 'bordercolor',
  497. '.padding', '.margin', '.border', 'bgcolor', '.text-align', '.color', '.background-color',
  498. '.font-size', '.font-weight', '.font-style', '.text-decoration', '.background',
  499. '.width', '.height', '.border-collapse'
  500. ],
  501. 'td,th': [
  502. 'id', 'class', 'align', 'valign', 'width', 'height', 'colspan', 'rowspan', 'bgcolor',
  503. '.text-align', '.color', '.background-color', '.font-size','.letter-spacing', '.font-weight',
  504. '.font-style', '.text-decoration', '.vertical-align', '.background', '.border'
  505. ],
  506. a : ['id', 'class', 'href', 'target', 'name'],
  507. embed : ['id', 'class', 'src', 'width', 'height', 'type', 'loop', 'autostart', 'quality', '.width', '.height', 'align', 'allowscriptaccess', 'wmode'],
  508. img : ['id', 'class', 'data-applet', 'data-file', 'data-id', 'data-key', 'src', 'width', 'height', 'border', 'alt', 'title', 'align', '.width', '.height', '.border'],
  509. 'p,ol,ul,li,blockquote,h1,h2,h3,h4,h5,h6' : [
  510. 'id', 'class', 'align', '.text-align', '.color', '.background-color', '.font-size','.letter-spacing', '.background',
  511. '.font-weight', '.font-style', '.text-decoration', '.vertical-align', '.text-indent', '.margin-left'
  512. ],
  513. pre : ['id', 'class'],
  514. hr : ['id', 'class', '.page-break-after'],
  515. 'br,tbody,tr,strong,b,sub,sup,em,i,u,strike,s,del' : ['id', 'class'],
  516. iframe : ['id', 'class', 'src', 'frameborder', 'width', 'height', '.width', '.height']
  517. },
  518. items : [
  519. 'preview', 'undo', 'redo', '|', 'cut', 'copy', 'paste',
  520. 'plainpaste', 'wordpaste', '|', 'justifyleft', 'justifycenter', 'justifyright',
  521. 'justifyfull', 'indent', 'outdent', 'clearhtml', 'quickformat', 'selectall', '|', 'fullscreen', 'source', '/',
  522. 'formatblock', 'fontsize', 'fontheight', '|', 'forecolor', 'hilitecolor', 'bold',
  523. 'italic', 'underline', 'lineheight', 'removeformat', 'insertorderedlist','|', 'image','table', 'hr', 'pagebreak','link', 'unlink'
  524. ]
  525. /*
  526. items : [
  527. 'source', '|', 'undo', 'redo', '|', 'preview', 'print', 'template', 'code', 'cut', 'copy', 'paste',
  528. 'plainpaste', 'wordpaste', '|', 'justifyleft', 'justifycenter', 'justifyright',
  529. 'justifyfull', 'insertorderedlist', 'insertunorderedlist', 'indent', 'outdent', 'subscript',
  530. 'superscript', 'clearhtml', 'quickformat', 'selectall', '|', 'fullscreen', '/',
  531. 'formatblock', 'fontsize', 'fontheight', '|', 'forecolor', 'hilitecolor', 'bold',
  532. 'italic', 'underline', 'strikethrough', 'lineheight', 'removeformat', '|', 'image', 'multiimage','table', 'hr', 'emoticons', 'baidumap', 'pagebreak',
  533. 'anchor', 'link', 'unlink'
  534. ]
  535. */
  536. //media
  537. /*
  538. items : [
  539. 'source', '|', 'undo', 'redo', '|', 'preview', 'print', 'template', 'code', 'cut', 'copy', 'paste',
  540. 'plainpaste', 'wordpaste', '|', 'justifyleft', 'justifycenter', 'justifyright',
  541. 'justifyfull', 'insertorderedlist', 'insertunorderedlist', 'indent', 'outdent', 'subscript',
  542. 'superscript', 'clearhtml', 'quickformat', 'selectall', '|', 'fullscreen', '/',
  543. 'formatblock', 'fontname', 'fontsize', '|', 'forecolor', 'hilitecolor', 'bold',
  544. 'italic', 'underline', 'strikethrough', 'lineheight', 'removeformat', '|', 'image', 'multiimage',
  545. 'flash', 'media', 'insertfile', 'table', 'hr', 'emoticons', 'baidumap', 'pagebreak',
  546. 'anchor', 'link', 'unlink', '|', 'about'
  547. ]
  548. */
  549. }
  550. if (editorWidth > 0) {
  551. param.width = editorWidth + 'px';
  552. param.minWidth = editorWidth + 'px';
  553. }
  554. return param;
  555. }
  556. //更新页面的提交按钮
  557. function submit()
  558. {
  559. if($(".save-data").length)
  560. {
  561. if (submitButton) {
  562. $(".save-data").each(function()
  563. {
  564. $(this).html(submitButton);
  565. })
  566. }
  567. $(".save-data").unbind('click').bind('click', function()
  568. {
  569. if (editors) {
  570. for (var i in editors) {
  571. if (i.indexOf('update_') != -1) {
  572. editors[i].sync();
  573. }
  574. }
  575. }
  576. //return;
  577. submitButton = $(this).html();
  578. $(this).html('loading...');
  579. $(this).unbind('click');
  580. submit_action();
  581. })
  582. }
  583. }
  584. //直接提交更新页的数据
  585. function submit_action()
  586. {
  587. $(".form1").submit();
  588. }
  589. //设置某一个input的值
  590. function set_update(id, value)
  591. {
  592. if($(id).length)
  593. {
  594. $(id).val(value);
  595. }
  596. }
  597. /**
  598. * 批量复制数据
  599. */
  600. function copy_data(e)
  601. {
  602. var html = '<div>';
  603. html += '<div><span>请输入要复制的数量:</span><input type="text" class="form-control form_margin" id="temp_copy_num" /></div>';
  604. html += '</div>';
  605. $('#dever_modal_body').html(html);
  606. $('#dever_modal_title').html('复制数据');
  607. $("#dever_modal_yes").unbind('click').bind('click', function()
  608. {
  609. set_update('#copy_num', $("#temp_copy_num").val());
  610. set_update('#update_where_id', 0);
  611. submit_action();
  612. });
  613. }
  614. //头部菜单
  615. function topMenu(e)
  616. {
  617. var p = e.parent().parent().parent().find('span');
  618. p.html(e.html());
  619. //更新当前的精细权限
  620. var url = config.host + 'top.update_action?json=1';
  621. var id = e.attr('data-id');
  622. $.post(url, {id:id}, function(t)
  623. {
  624. var href = location.href;
  625. if(location.href.indexOf('where_id') != -1)
  626. {
  627. var temp = location.href.split('where_id');
  628. href = temp[0] + 'where_id=' + t;
  629. }
  630. if(typeof(config.layout) != "undefined" && $(config.layout).length)
  631. {
  632. pjax({url: href, container: config.layout})
  633. }
  634. else
  635. {
  636. location.href = href;
  637. }
  638. })
  639. }
  640. //链接跳转
  641. function go(key, value)
  642. {
  643. var href = location.href;
  644. if(location.href.indexOf(key) != -1)
  645. {
  646. var temp = location.href.split(key + '=');
  647. href = temp[0] + key + '=' + value + '&' + temp[1];
  648. } else {
  649. href = href + '&' + key + '=' + value;
  650. }
  651. location.href = href;
  652. }
  653. //更新页面的批量载入选择
  654. function loadShow()
  655. {
  656. if($(".show_input").length)
  657. {
  658. $(".show_input input").each(function()
  659. {
  660. if($(this).attr('checked'))
  661. {
  662. inputShow($(this), $(this).attr('show_id'), 'input');
  663. }
  664. })
  665. $(".show_input select").each(function()
  666. {
  667. if($(this).find('option:selected').text())
  668. {
  669. inputShow($(this), $(this).attr('show_id'));
  670. }
  671. })
  672. }
  673. }
  674. function menuGroup(id, e)
  675. {
  676. if (typeof(layer) != 'undefined' && admingroup) {
  677. layer.close(admingroup);
  678. }
  679. $('.menu_group').hide();
  680. $('.menu_group_' + id).show();
  681. $('.menu_group_' + id).eq(0).addClass('layui-nav-itemed');
  682. }
  683. function inputShow(e,n,t)
  684. {
  685. $(".show_" + n).hide();
  686. var v = e.val();
  687. console.info(v);
  688. if (t == 'input') {
  689. var item = e.parent().find('input');
  690. item.each(function()
  691. {
  692. if($(this).get(0).checked == true)
  693. {
  694. inputShowOne($(this),n);
  695. }
  696. });
  697. } else {
  698. var item = e.parent().find('select');
  699. item.each(function()
  700. {
  701. if($(this).find('option:selected').text())
  702. {
  703. inputShowOne($(this),n);
  704. }
  705. });
  706. }
  707. var array = ['input', 'textarea'];
  708. for(var a in array)
  709. {
  710. if ($(".show_" + n).find(array[a]).length) {
  711. var s = $(".show_" + n).find(array[a]);
  712. var p = s.parent().parent().parent().css('display');
  713. var c = s.attr('class');
  714. if (c.indexOf('validate[required]') > -1 && p == 'none') {
  715. $(".show_" + n).find(array[a]).removeClass('validate[required]').addClass('validates');
  716. }
  717. if (c.indexOf('validates') > -1) {
  718. $(".show_" + n).find(array[a]).removeClass('validates').addClass('validate[required]');
  719. }
  720. }
  721. }
  722. }
  723. function inputShowOne(e,n)
  724. {
  725. var value = e.val();
  726. var ele = '.show_' + n + '_ajax';
  727. if ($(ele).length) {
  728. $(ele).each(function()
  729. {
  730. var self = $(this);
  731. var url = self.attr('dever-ajax');
  732. $.getJSON(url + value + '&callback=?', function(t) {
  733. self.find('.margin-top').html(t.data);
  734. inputShowOneValiDate(self);
  735. checkbox();
  736. })
  737. })
  738. } else {
  739. ele = '.show_' + n + '_' + value;
  740. inputShowOneValiDate($(ele));
  741. }
  742. }
  743. function inputShowOneValiDate(e)
  744. {
  745. e.show();
  746. var array = ['input', 'textarea'];
  747. for(var a in array)
  748. {
  749. if(e.length && e.attr('class').indexOf('show_no') == -1)
  750. {
  751. e.find(array[a]).each(function()
  752. {
  753. var parent = $(this).parent();
  754. if($(this).attr('class') != 'editor' && $(this).attr('class').indexOf('validates') > -1 && parent.find('label').length && parent.find('label').html().indexOf('选填') == -1)
  755. {
  756. $(this).addClass('validate[required]');
  757. }
  758. })
  759. }
  760. }
  761. }
  762. //批量更新
  763. function list_mul(e)
  764. {
  765. var type = parseInt($("#mul_type").val());
  766. if(type != 1 && type != 2)
  767. {
  768. alert('您还没有选择数据更新方式');
  769. return;
  770. }
  771. var index = layer.confirm('确定进行此项操作吗?', function()
  772. {
  773. $('#method').val('mul');
  774. $('#function').val('msg');
  775. layer.close(index);
  776. $('#form1').attr('target', 'f1').submit();
  777. })
  778. }
  779. //搜索
  780. function list_search(e)
  781. {
  782. $('#method').val('search');
  783. $('#function').val('');
  784. $('#form1').attr('target', '').submit();
  785. }
  786. //更新数据
  787. function update(e, id, project, table, notice, menu_id)
  788. {
  789. var call = function()
  790. {
  791. var col = e.attr('name').replace('up_col_', '');
  792. var value = e.val();
  793. var old = e.attr('data-old');
  794. var url = config.host + 'database.update_action?json=1';
  795. $.post(url, {where_id:id,col:col,value:value,project:project,table:table,menu_id:menu_id}, function(t)
  796. {
  797. var t = eval('('+t+')');
  798. if (t.status == 1) {
  799. e.attr('data-old', value);
  800. notify('操作已成功!您的操作已修改当前选项!', e);
  801. preview();
  802. } else {
  803. msg(t);
  804. e.val(old);
  805. }
  806. })
  807. }
  808. if(notice)
  809. {
  810. var index = layer.confirm(notice, function(i, l)
  811. {
  812. $(l).find('.layui-layer-btn0').css('pointer-events','none');
  813. layer.close(index);
  814. call();
  815. });
  816. }
  817. else
  818. {
  819. call();
  820. }
  821. }
  822. function notify(msg, e)
  823. {
  824. if (!e) {
  825. layer.msg(msg);
  826. return;
  827. }
  828. layer.tips(msg, e, {
  829. tips: [1, '#3595CC']
  830. });
  831. /*
  832. var notice = new PNotify({
  833. title: '提示信息',
  834. text: msg,
  835. buttons: {
  836. closer: false,
  837. sticker: false
  838. }
  839. });
  840. notice.get().click(function() {
  841. notice.remove();
  842. });
  843. */
  844. }
  845. //模板选择
  846. function template()
  847. {
  848. if(config.template)
  849. {
  850. $('body').attr('class', 'theme-' + config.template);
  851. }
  852. if($(".selector").length)
  853. {
  854. $(".selector").each(function()
  855. {
  856. if($(this).data('check') == 'checked')
  857. {
  858. selector($(this));
  859. }
  860. })
  861. }
  862. }
  863. //选择器
  864. function selector(e)
  865. {
  866. var value = e.data('value');
  867. var name = e.data('name');
  868. $('#'+name+'_value').val(value);
  869. $('.'+name+'_selector').children().css({'border':'1px solid #ccc'});
  870. e.children().css({'border':'1px solid black'});
  871. if(name == 'update_template')
  872. {
  873. $('body').attr('class', 'theme-' + value);
  874. }
  875. }
  876. //根据e的值,来载入其他数据
  877. function loading(e, data)
  878. {
  879. var value = e.val();
  880. if(e.attr('id') && e.attr('id').indexOf('_temp') != -1)
  881. {
  882. var id = e.attr('id').replace('_temp', '');
  883. if($('#' + id).length)
  884. {
  885. var value = $('#' + id).val();
  886. }
  887. }
  888. if(data.element)
  889. {
  890. if(data.url)
  891. {
  892. data.value = value;
  893. $.getJSON(data.url + '&json=1', data, function(t)
  894. {
  895. $('#update_'+data.element+'_value').val(t.data);
  896. });
  897. }
  898. else
  899. {
  900. $('#update_'+data.element+'_value').val(value);
  901. }
  902. }
  903. else if(data.url)
  904. {
  905. data.value = value;
  906. data.where_id = $('#update_where_id').val();
  907. data.table = $('#table').val();
  908. data.project = $('#project').val();
  909. $.getJSON(data.url + '&json=1', data, function(s)
  910. {
  911. t = s.data;
  912. if (typeof(t) == 'object') {
  913. var d = t.data;
  914. t = t.html;
  915. if (d) {
  916. for(var i in d) {
  917. $('#update_'+i+'_value').val(d[i]);
  918. }
  919. }
  920. }
  921. if(t.indexOf('onblur') != -1)
  922. {
  923. eval(t);
  924. }
  925. else
  926. {
  927. var parent = e.parent().parent();
  928. if(t.indexOf('status') == -1)
  929. {
  930. if(data.type == 1)
  931. {
  932. $('.checking_1,.checking_2,.checking_3,.checking_4').each(function()
  933. {
  934. $(this).remove();
  935. });
  936. }
  937. else
  938. {
  939. $('.checking_-1,.checking_3,.checking_4').each(function()
  940. {
  941. $(this).remove();
  942. });
  943. }
  944. if (!parent.parent().find('.bind_show').length) {
  945. parent.after('<div class="bind_show">' + t + '</div>');
  946. } else if (parent.parent().find('.bind_show').html() != t) {
  947. parent.parent().find('.bind_show').html(t);
  948. }
  949. checkbox();
  950. }
  951. }
  952. });
  953. }
  954. }
  955. //根据e的值,来载入其他数据,先检测是否选中
  956. function checking(name, e, data)
  957. {
  958. var value = [];
  959. $('.' + name).each(function()
  960. {
  961. if($(this).get(0).checked == true)
  962. {
  963. value.push($(this).val());
  964. }
  965. });
  966. if(data.url)
  967. {
  968. data.value = value.join(',');
  969. data.where_id = $('#update_where_id').val();
  970. data.table = $('#table').val();
  971. data.project = $('#project').val();
  972. if(data.check)
  973. {
  974. data.check_value = false;
  975. $(data.check).each(function()
  976. {
  977. if($(this).get(0).checked == true)
  978. {
  979. data.check_value = $(this).val();
  980. }
  981. });
  982. }
  983. $.getJSON(data.url, data, function(s)
  984. {
  985. t = s.data;
  986. var parent = e.parent().parent().parent();
  987. if(t.indexOf('status') == -1)
  988. {
  989. if(data.type == 1)
  990. {
  991. $('.checking_1,.checking_2,.checking_3,.checking_4').each(function()
  992. {
  993. $(this).remove();
  994. });
  995. }
  996. else
  997. {
  998. $('.checking_-1,.checking_3,.checking_4').each(function()
  999. {
  1000. $(this).remove();
  1001. });
  1002. }
  1003. parent.after(t);
  1004. checkbox();
  1005. }
  1006. });
  1007. }
  1008. }
  1009. function autocomplete()
  1010. {
  1011. if ($("input").length) {
  1012. $("input").each(function()
  1013. {
  1014. $(this).attr('autocomplete', 'off');
  1015. });
  1016. }
  1017. if($("input[complete]").length)
  1018. {
  1019. $("input[complete]").each(function()
  1020. {
  1021. var cache = {};
  1022. var self = $(this);
  1023. self.autocomplete(
  1024. {
  1025. minLength: 2,
  1026. source: function( request, response )
  1027. {
  1028. var term = request.term.split( /,\s*/ );
  1029. request.term = term.pop();
  1030. if ( request.term in cache ) {
  1031. response( cache[ request.term ] );
  1032. return;
  1033. }
  1034. var cate = self.attr('complete_cate');
  1035. if (cate) {
  1036. request[cate] = $('update_' + cate + '_value').val();
  1037. }
  1038. $.getJSON(self.attr('complete') + '&callback=?', request, function( data, status, xhr ) {
  1039. data = data.data
  1040. cache[ term ] = data;
  1041. var state = true;
  1042. for(var i in data)
  1043. {
  1044. if(data[i].id <=0)
  1045. {
  1046. state = false;
  1047. }
  1048. }
  1049. if(state)
  1050. {
  1051. response( data );
  1052. }
  1053. });
  1054. },
  1055. focus: function() {
  1056. // prevent value inserted on focus
  1057. return false;
  1058. },
  1059. select: function( event, ui )
  1060. {
  1061. //log( "Selected: " + ui.item.value + " aka " + ui.item.id );
  1062. var value = self.attr('complete_callback');
  1063. var id = self.attr('id').replace('_temp', '');
  1064. var name = self.attr('name').replace('_temp', '');
  1065. //var e = $("#" + id);
  1066. var e = self;
  1067. 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>';
  1068. if (!$("#" + id + '_show').length) {
  1069. e.parent().append(html);
  1070. }
  1071. if ($("#" + id + '_show').html().indexOf(ui.item.value) == -1)
  1072. {
  1073. var link = '';
  1074. var attr = '';
  1075. var pic = '';
  1076. if (ui.item['pic']) {
  1077. pic = '<a href="javascript:;"><img src="'+ui.item['pic']+'" width="100"></a>';
  1078. }
  1079. if (ui.item['link']) {
  1080. link = ui.item['link'];
  1081. attr = ' target="_blank"';
  1082. }
  1083. 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>';
  1084. $("#" + id + '_show').append(html);
  1085. if (!autocomplete_value[id]) {
  1086. autocomplete_value[id] = [];
  1087. }
  1088. autocomplete_value[id].push(ui.item[value]);
  1089. }
  1090. ui.item.value = '';
  1091. }
  1092. });
  1093. })
  1094. }
  1095. }
  1096. function autocomplete_del(e, id, value, name)
  1097. {
  1098. e.parent().parent().remove();
  1099. autocomplete_value[id].remove(value);
  1100. var len = autocomplete_value[id].length;
  1101. if (len < 1 && !($('#del_' + name).length)) {
  1102. $("#" + id + '_show').append('<input type="hidden" name="'+name+'[]" id="del_'+name+'" value="-1" />');
  1103. }
  1104. }
  1105. function searchbox(id, e)
  1106. {
  1107. var self = e.parent().find("input");
  1108. var v = self.val();
  1109. var key = self.attr('id').replace('_temp', '');
  1110. var request = {};
  1111. request.term = v;
  1112. var cate = self.attr('searchbox_cate');
  1113. if (cate) {
  1114. var c = cate.split(',');
  1115. for (var i in c) {
  1116. if (typeof(c[i]) == 'string' && $('#'+c[i]).length) {
  1117. request[c[i]] = $('#'+c[i]).val();
  1118. }
  1119. }
  1120. }
  1121. var index = layer.msg('加载中...');
  1122. $.getJSON(self.attr('searchbox') + '&callback=?', request, function( data, status, xhr ) {
  1123. layer.close(index);
  1124. var data = data.data;
  1125. if (!data) {
  1126. showAlert('没有搜索到数据');
  1127. return;
  1128. }
  1129. 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>';
  1130. if (data) {
  1131. var j = 0;
  1132. var c = '';
  1133. var s = '';
  1134. var cateHtml = '';
  1135. var content = '';
  1136. for (var i in data) {
  1137. if (j == 0) {
  1138. c = 'class="layui-this"';
  1139. s = 'layui-show';
  1140. } else {
  1141. c = '';
  1142. s = '';
  1143. }
  1144. cateHtml += '<li '+c+'>'+data[i].name+'</li>';
  1145. j++;
  1146. 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}';
  1147. var p = false;
  1148. for (var k in data[i].child) {
  1149. if (data[i].child[k].name) {
  1150. var pic = '';
  1151. if (data[i].child[k].pic) {
  1152. pic = '<td><img src="'+data[i].child[k].pic+'" width="100"></td>';
  1153. p = true;
  1154. }
  1155. var check = '';
  1156. if (searchbox_value[key].indexOf(data[i].child[k].id) != -1) {
  1157. check = 'checked';
  1158. }
  1159. 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>';
  1160. }
  1161. }
  1162. item += '</table></div></div>';
  1163. 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>';
  1164. if (p) {
  1165. head = head.replace('</td><td>', '</td><td>图片</td><td>');
  1166. }
  1167. item = item.replace('{head}', head);
  1168. content += item;
  1169. }
  1170. if (cateHtml) {
  1171. html = html.replace('{cate}', cateHtml);
  1172. }
  1173. if (content) {
  1174. html = html.replace('{content}', content);
  1175. }
  1176. }
  1177. var config = {
  1178. type: 1,
  1179. shade: 0.3,
  1180. title : false,
  1181. shadeClose : true,
  1182. area : ['800px', '600px'],
  1183. content: html
  1184. };
  1185. layer.open(config);
  1186. layui.use('element', function(){
  1187. var element = layui.element;
  1188. });
  1189. });
  1190. }
  1191. function searchbox_checkall(e, id)
  1192. {
  1193. $('.' + id).each(function()
  1194. {
  1195. $(this).get(0).checked = e.get(0).checked;
  1196. //$(this).click();
  1197. })
  1198. }
  1199. function searchbox_checkone(e, id, key, value)
  1200. {
  1201. if (!e.get(0).checked) {
  1202. $('#searchbox_check_' + key + '_' + value).remove();
  1203. searchbox_value.remove(value);
  1204. var len = searchbox_value.length;
  1205. var name = key.replace('_value', '');
  1206. if (len < 1 && !($('#del_' + name).length)) {
  1207. $("#" + key + '_show').append('<input type="hidden" name="'+name+'[]" id="del_'+name+'" value="-1" />');
  1208. }
  1209. } else {
  1210. var c = '.' + e.attr('data-class');
  1211. searchbox_yes(id, c, false);
  1212. }
  1213. }
  1214. function searchbox_yes(e, c, state)
  1215. {
  1216. var self = $("#" +e);
  1217. $(c).each(function()
  1218. {
  1219. if ($(this).get(0).checked && $(this).val() && $(this).attr('data-value')) {
  1220. var value = self.attr('searchbox_callback');
  1221. var id = self.attr('id').replace('_temp', '');
  1222. var name = self.attr('name').replace('_temp', '');
  1223. 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>';
  1224. if (!$("#" + id + '_show').length) {
  1225. self.parent().append(html);
  1226. }
  1227. if (!$("#" + id + '_show').find('#searchbox_check_'+id+'_'+$(this).attr('data-value')).length)
  1228. {
  1229. var link = '';
  1230. var attr = '';
  1231. var pic = '';
  1232. if ($(this).attr('data-pic') && $(this).attr('data-pic') != 'undefined') {
  1233. pic = '<a href="javascript:;"><img src="'+$(this).attr('data-pic')+'" width="100"></a>';
  1234. }
  1235. if ($(this).attr('data-link')) {
  1236. link = $(this).attr('data-link');
  1237. attr = ' target="_blank"';
  1238. }
  1239. 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>';
  1240. $("#" + id + '_show').append(html);
  1241. if (!searchbox_value[id]) {
  1242. searchbox_value[id] = [];
  1243. }
  1244. searchbox_value[id].push($(this).attr('data-value'));
  1245. }
  1246. }
  1247. })
  1248. if (state == true) {
  1249. layer.closeAll();
  1250. }
  1251. }
  1252. function searchbox_del(e, id, value, name)
  1253. {
  1254. e.parent().parent().remove();
  1255. searchbox_value.remove(value);
  1256. var len = searchbox_value.length;
  1257. if (len < 1 && !($('#del_' + name).length)) {
  1258. $("#" + id + '_show').append('<input type="hidden" name="'+name+'[]" id="del_'+name+'" value="-1" />');
  1259. }
  1260. }
  1261. //后台通用的提示
  1262. function msg(value)
  1263. {
  1264. $("#dever_modal_no").click();
  1265. if(!value.data)
  1266. {
  1267. value.data = value.msg;
  1268. }
  1269. if(value == 1)
  1270. {
  1271. location.reload();
  1272. return;
  1273. }
  1274. submit();
  1275. var url = '';
  1276. if(value.data != 'reload' && value.status == 2)
  1277. {
  1278. showAlert(value.msg, false, '错误提示');
  1279. //alert(value.data);
  1280. //location.reload();
  1281. return;
  1282. }
  1283. else if(value.data == 'reload')
  1284. {
  1285. if(typeof(config.layout) != "undefined" && $(config.layout).length)
  1286. {
  1287. pjax({url: location.href, container: config.layout})
  1288. }
  1289. else
  1290. {
  1291. location.reload();
  1292. }
  1293. return;
  1294. }
  1295. else
  1296. {
  1297. if(value.data.indexOf('http') != -1)
  1298. {
  1299. url = value.data;
  1300. }
  1301. else if($("#url").length)
  1302. {
  1303. url = $("#url").val();
  1304. }
  1305. else
  1306. {
  1307. notify(value.data)
  1308. return;
  1309. }
  1310. if(url)
  1311. {
  1312. if(typeof(config.layout) != "undefined" && $(config.layout).length)
  1313. {
  1314. pjax({url: url, container: config.layout});
  1315. }
  1316. else
  1317. {
  1318. location.href = url;
  1319. }
  1320. }
  1321. else
  1322. {
  1323. if(typeof(config.layout) != "undefined" && $(config.layout).length)
  1324. {
  1325. pjax({url: location.href, container: config.layout});
  1326. }
  1327. else
  1328. {
  1329. location.reload();
  1330. }
  1331. }
  1332. }
  1333. return;
  1334. }
  1335. /**
  1336. * 处理多选问题,处理全选按钮
  1337. */
  1338. function checkbox()
  1339. {
  1340. if($(".autoload").length)
  1341. {
  1342. $(".autoload").each(function()
  1343. {
  1344. if($(this).get(0).checked == true)
  1345. {
  1346. $(this).removeClass('autoload');
  1347. $(this).load();
  1348. }
  1349. });
  1350. }
  1351. if($(".autoload_text").length)
  1352. {
  1353. $(".autoload_text").each(function()
  1354. {
  1355. if($(this).val())
  1356. {
  1357. $(this).removeClass('autoload_text');
  1358. $(this).load();
  1359. }
  1360. });
  1361. }
  1362. var name = 'checkbox-checkall';
  1363. var checkbox = $("." + name);
  1364. if(checkbox.length)
  1365. {
  1366. checkbox.unbind('click').bind('click', function()
  1367. {
  1368. var self = $(this);
  1369. $("." + name + "-" + self.val()).each(function()
  1370. {
  1371. $(this).get(0).checked = self.get(0).checked;
  1372. var next = $(this).next();
  1373. if($(this).get(0).checked == true)
  1374. {
  1375. if(next.length && next.attr('type') != 'checkbox' && next.attr('type') != 'hidden')
  1376. {
  1377. next.attr('disabled', false);
  1378. }
  1379. if($("#mul_type").length)
  1380. {
  1381. $("#mul_type").val(1);
  1382. }
  1383. }
  1384. else
  1385. {
  1386. if(next.length && next.attr('type') != 'checkbox' && next.attr('type') != 'hidden')
  1387. {
  1388. next.attr('disabled', true);
  1389. }
  1390. if($("#mul_type").length)
  1391. {
  1392. $("#mul_type").val(0);
  1393. }
  1394. }
  1395. if ($(this).attr('onclick') && $(this).attr('onclick').indexOf('show') > 0) {
  1396. inputShow($(this), 'col');
  1397. }
  1398. })
  1399. });
  1400. checkbox.each(function()
  1401. {
  1402. var self = $(this);
  1403. var len = $("." + name + "-" + self.val()).length;
  1404. $("." + name + "-" + self.val()).each(function()
  1405. {
  1406. $(this).unbind('click').bind('click', function()
  1407. {
  1408. var next = $(this).next();
  1409. var state = $(this).attr('data-state');
  1410. if($(this).get(0).checked == true)
  1411. {
  1412. if (state == 2) {
  1413. self.get(0).checked = true;
  1414. } else {
  1415. if ($("." + name + "-" + self.val()+":checked").length >= len) {
  1416. self.get(0).checked = true;
  1417. }
  1418. }
  1419. if(self.attr('type') == 'radio')
  1420. {
  1421. //如果父选项是radio类型,做下限制
  1422. //alert(1);
  1423. }
  1424. if($("#mul_type").length)
  1425. {
  1426. $("#mul_type").val(1);
  1427. }
  1428. if(next.length && next.attr('type') != 'checkbox' && next.attr('type') != 'hidden')
  1429. {
  1430. next.attr('disabled', false);
  1431. }
  1432. }
  1433. else
  1434. {
  1435. if(next.length && next.attr('type') != 'checkbox' && next.attr('type') != 'hidden')
  1436. {
  1437. next.attr('disabled', true);
  1438. }
  1439. }
  1440. var num = 0;
  1441. $("." + name + "-" + self.val()).each(function()
  1442. {
  1443. if($(this).get(0).checked == true)
  1444. {
  1445. num = 1;
  1446. }
  1447. });
  1448. var id = $(this).attr('name');
  1449. var hidden = id;
  1450. id = id.replace('[]', '');
  1451. if(num == 0)
  1452. {
  1453. self.get(0).checked = false;
  1454. if($("#mul_type").length)
  1455. {
  1456. $("#mul_type").val(0);
  1457. }
  1458. if (state == 2) {
  1459. } else if (!$('#' + id).length) {
  1460. self.parent().append('<input type="hidden" value="0" id="'+id+'" name="'+hidden+'" />');
  1461. }
  1462. } else {
  1463. if ($('#' + id).length) {
  1464. $('#' + id).remove();
  1465. }
  1466. }
  1467. })
  1468. if($(this).get(0).checked == true)
  1469. {
  1470. self.get(0).checked = true;
  1471. if ($(this).attr('onclick') && $(this).attr('onclick').indexOf('show') > 0) {
  1472. inputShow($(this), 'col');
  1473. }
  1474. }
  1475. });
  1476. })
  1477. }
  1478. }
  1479. /**
  1480. * 处理双击编辑
  1481. */
  1482. function edit()
  1483. {
  1484. if($(".edit").length)
  1485. {
  1486. $(".edit").each(function()
  1487. {
  1488. $(this).bind('dblclick', function()
  1489. {
  1490. var col = $(this).attr('data-col');
  1491. var project = $(this).attr('data-project');
  1492. var table = $(this).attr('data-table');
  1493. var url = $(this).attr('data-url');
  1494. var id = $(this).attr('data-id');
  1495. var html = $(this).attr('data-content');
  1496. var type = $(this).attr('data-type');
  1497. if($(this).find(".edit-content").length)
  1498. {
  1499. html = $(this).find(".edit-content").html();
  1500. html = html.replace('<!--', '<');
  1501. html = html.replace('-->', '>');
  1502. }
  1503. if (html == '点此编辑') {
  1504. html = '';
  1505. }
  1506. if(html.indexOf('input') == -1)
  1507. {
  1508. if(type && type == 'textarea')
  1509. {
  1510. $(this).html('<textarea type="text" name="edit" id="edit" rows="10" cols="60" class="layui-input">'+html+'</textarea>');
  1511. }
  1512. else
  1513. {
  1514. $(this).html('<input type="text" name="edit" id="edit" value="'+html+'" class="layui-input">');
  1515. }
  1516. var self = $(this);
  1517. self.find("#edit").focus();
  1518. self.find("#edit").blur(function()
  1519. {
  1520. var value = self.find("#edit").val();
  1521. if(!value)
  1522. {
  1523. alert('不能为空');
  1524. return;
  1525. }
  1526. if($(this).find(".edit-content").length)
  1527. {
  1528. $(this).find(".edit-content").html(value);
  1529. }
  1530. else
  1531. {
  1532. self.attr('data-content', value);
  1533. }
  1534. self.html(value);
  1535. $.post(url, {project:project,table:table,value:value,where_id:id,col:col}, function(t)
  1536. {
  1537. notify('修改成功', self);
  1538. preview();
  1539. /*
  1540. if(type && type == 'textarea')
  1541. {
  1542. self.html(t);
  1543. }
  1544. */
  1545. })
  1546. })
  1547. }
  1548. });
  1549. })
  1550. }
  1551. }
  1552. function preview()
  1553. {
  1554. if($("#preview").length)
  1555. {
  1556. var time = Date.parse(new Date());
  1557. var src = $('#preview').attr('src').split('#');
  1558. $('#preview').attr('src', src[0] + '&' + time + '#' + src[1]);
  1559. }
  1560. }
  1561. function del()
  1562. {
  1563. if($(".oper_delete").length)
  1564. {
  1565. $(".oper_delete").each(function()
  1566. {
  1567. var href = $(this).attr('href');
  1568. $(this).attr('href', '#');
  1569. $(this).unbind('click');
  1570. $(this).bind('click', function()
  1571. {
  1572. del_act(href);
  1573. });
  1574. })
  1575. }
  1576. }
  1577. /**
  1578. * 处理删除
  1579. */
  1580. function del_act(href)
  1581. {
  1582. var index = layer.confirm('确定进行此项操作吗?', function(i, l)
  1583. {
  1584. $(l).find('.layui-layer-btn0').css('pointer-events','none');
  1585. $.getJSON(href + '&json=1&callback=?', {}, function(t)
  1586. {
  1587. msg(t);
  1588. layer.close(index);
  1589. })
  1590. });
  1591. }
  1592. /**
  1593. * 处理特殊加载的按钮
  1594. */
  1595. function load(href, content, title)
  1596. {
  1597. if (!content) {
  1598. content = '确定进行此项操作吗?';
  1599. }
  1600. if (!title) {
  1601. title = '温馨提示';
  1602. }
  1603. var i = 0;
  1604. var flag = false;
  1605. var send = {title:title}
  1606. var index = layer.confirm(content, send, function(i, l)
  1607. {
  1608. if (!flag) {
  1609. i++;
  1610. $(l).find('.layui-layer-btn0').css('pointer-events','none');
  1611. if(href.indexOf('&') == -1)
  1612. {
  1613. href += '?json=1&callback=?';
  1614. }
  1615. else
  1616. {
  1617. href += '&json=1&callback=?';
  1618. }
  1619. $.getJSON(href, {}, function(t)
  1620. {
  1621. if (t.status == 2) {
  1622. flag = false;
  1623. showAlert(t.msg, false, '错误提示');
  1624. return;
  1625. } else {
  1626. // 修改标志位
  1627. flag = true;
  1628. msg(t);
  1629. layer.close(index);
  1630. //location.reload();
  1631. }
  1632. })
  1633. }
  1634. })
  1635. /*
  1636. showAlert('确定进行此项操作吗?', function()
  1637. {
  1638. $("#dever_modal_no").click();
  1639. $.getJSON(href + '&json=1', {}, function(t)
  1640. {
  1641. msg(t);
  1642. })
  1643. });
  1644. */
  1645. }
  1646. /**
  1647. * 处理特殊页面
  1648. */
  1649. function loadPage(href, title, submit)
  1650. {
  1651. if(href.indexOf('&') == -1)
  1652. {
  1653. href += '?json=1&callback=?';
  1654. }
  1655. else
  1656. {
  1657. href += '&json=1&callback=?';
  1658. }
  1659. $.getJSON(href, {}, function(t)
  1660. {
  1661. var func = false;
  1662. if (submit) {
  1663. }
  1664. showAlert(t.data, func, title);
  1665. })
  1666. }
  1667. /**
  1668. * 处理特殊加载的按钮
  1669. */
  1670. function jump(href, form)
  1671. {
  1672. if (form) {
  1673. var param = formData(form);
  1674. href += param[1];
  1675. }
  1676. if (href.indexOf('list_excel') != -1) {
  1677. layer.confirm('确认导出数据吗?', function()
  1678. {
  1679. Excel.export(href);
  1680. })
  1681. } else {
  1682. location.href = href;
  1683. }
  1684. }
  1685. /**
  1686. * 处理change
  1687. */
  1688. function change()
  1689. {
  1690. if($(".change").length)
  1691. {
  1692. $(".change").each(function()
  1693. {
  1694. var key = $(this).attr('data-child');
  1695. /*
  1696. $('.' + key).each(function()
  1697. {
  1698. if($(this).find('select option:selected').val())
  1699. {
  1700. $(this).show();
  1701. $('#set_cate_id_child').get(0).value = $(this).attr('parent');
  1702. }
  1703. });
  1704. */
  1705. $(this).change(function()
  1706. {
  1707. $('.' + key).hide();
  1708. var v = $('.' + key + '_' + $(this).val());
  1709. var s = v.find('select');
  1710. s.change(function()
  1711. {
  1712. $('.' + key + '_value').val($(this).val());
  1713. })
  1714. if(v.length)
  1715. {
  1716. $('.' + key + '_value').val(s.val());
  1717. v.show();
  1718. }
  1719. else
  1720. {
  1721. $('.' + key + '_value').val(-1);
  1722. }
  1723. });
  1724. if($(this).val() > 0)
  1725. {
  1726. $(this).change();
  1727. }
  1728. });
  1729. }
  1730. }
  1731. /**
  1732. * 处理图库系统
  1733. */
  1734. function image()
  1735. {
  1736. if($(".dever-note").length)
  1737. {
  1738. $(".dever-note").each(function()
  1739. {
  1740. var key = $(this).attr('key');
  1741. $(this).inlineattachment(
  1742. {
  1743. uploadUrl: config.upload + '.drag?key='+ key
  1744. });
  1745. });
  1746. }
  1747. if($(".image_upload").length)
  1748. {
  1749. $(".image_upload").each(function(i)
  1750. {
  1751. //如果是大文件
  1752. if ($(this).attr('l')) {
  1753. loadUploadL(i,$(this),$(this).attr('key'),config.upload + '.start', config.lib + 'upload/');
  1754. } else {
  1755. var parent = $(this).parent().parent();
  1756. //alert(parent.attr('id'));
  1757. if(parent.attr('id') && parent.attr('id').indexOf('-child-0') != -1)
  1758. {
  1759. return;
  1760. }
  1761. loadUpload(i,$(this),$(this).attr('key'),config.upload + '.start', config.lib + 'upload/');//三个参数说明1:第几个上传框2:文件对象3:图片的基本配置标题
  1762. }
  1763. })
  1764. }
  1765. if($(".upload_show").length)
  1766. {
  1767. $(".upload_show").each(function(i)
  1768. {
  1769. var parent = $(this).parent().parent();
  1770. if(parent.attr('id') && parent.attr('id').indexOf('-child-0') != -1)
  1771. {
  1772. return;
  1773. }
  1774. showUpload(i,$(this),$(this).attr('key'),config.upload + '.files', config.lib + 'upload/', 1);//三个参数说明1:第几个上传框2:文件对象3:图片的基本配置标题
  1775. })
  1776. }
  1777. if($(".upload_cover").length)
  1778. {
  1779. $(".upload_cover").each(function(i)
  1780. {
  1781. var parent = $(this).parent().parent();
  1782. if(parent.attr('id') && parent.attr('id').indexOf('-child-0') != -1)
  1783. {
  1784. return;
  1785. }
  1786. showUploadCover(i,$(this),$(this).attr('key'),config.upload + '.videoCover', config.lib + 'upload/', 1);//三个参数说明1:第几个上传框2:文件对象3:图片的基本配置标题
  1787. })
  1788. }
  1789. if($(".upload_show_editor").length)
  1790. {
  1791. $(".upload_show_editor").each(function(i)
  1792. {
  1793. var parent = $(this).parent().parent();
  1794. if(parent.attr('id') && parent.attr('id').indexOf('-child-0') != -1)
  1795. {
  1796. return;
  1797. }
  1798. showUpload(i,$(this),$(this).attr('key'),config.upload + '.files', config.lib + 'upload/', 3);//三个参数说明1:第几个上传框2:文件对象3:图片的基本配置标题
  1799. })
  1800. }
  1801. }
  1802. /**
  1803. * 修改密码
  1804. */
  1805. function pass(e)
  1806. {
  1807. var html = '<style>.password_edit div{margin:10px;}.password_edit input{width:200px;}</style><div class="password_edit">';
  1808. html += '<div><label class="layui-form-label">旧密码:</label><input type="password" class="form-control form_margin layui-input" id="edit_old_password" /></div>';
  1809. html += '<div><label class="layui-form-label">新密码:</label><input type="password" class="form-control form_margin layui-input" id="edit_new_password" /></div>';
  1810. html += '</div>';
  1811. var edit = function()
  1812. {
  1813. var old_password = $("#edit_old_password").val();
  1814. var new_password = $("#edit_new_password").val();
  1815. if(!old_password || !new_password)
  1816. {
  1817. alert('请输入密码');
  1818. return;
  1819. }
  1820. if(old_password == new_password)
  1821. {
  1822. alert('旧密码和新密码相同');
  1823. return;
  1824. }
  1825. $.post(config.host + 'auth.password', {old:old_password,new:new_password}, function(t)
  1826. {
  1827. alert(t);
  1828. })
  1829. };
  1830. showAlert(html, edit, '修改密码');
  1831. /*
  1832. $('#dever_modal_body').html(html);
  1833. $('#dever_modal_title').html('修改密码');
  1834. */
  1835. }
  1836. var MSG = [];
  1837. /**
  1838. * 打开弹窗
  1839. */
  1840. //function showMsg(title, e, id, func)
  1841. function showMsg(title, e, id, func, param)
  1842. {
  1843. if(id.indexOf('http://') == -1)
  1844. {
  1845. if($(id).length)
  1846. {
  1847. var html = $(id).html();
  1848. if($(id).html())
  1849. {
  1850. var html = $(id).html();
  1851. MSG[id] = html;
  1852. $(id).html('');
  1853. }
  1854. else
  1855. {
  1856. var html = MSG[id];
  1857. }
  1858. }
  1859. else
  1860. {
  1861. var html = id;
  1862. }
  1863. showAlert(html, func, title);
  1864. /*
  1865. $('#dever_modal_body').html(html);
  1866. $('#dever_modal_title').html(title);
  1867. if (func) {
  1868. $("#dever_modal_yes").unbind('click').bind('click', func);
  1869. } else {
  1870. $("#dever_modal_yes").unbind('click').bind('click', function(){$("#dever_modal_no").click()});
  1871. }
  1872. */
  1873. }
  1874. else
  1875. {
  1876. var url = id;
  1877. var send = {};
  1878. if (param) {
  1879. send = param;
  1880. }
  1881. if (e && e.attr('msg-send')) {
  1882. send.data = e.attr('msg-send');
  1883. }
  1884. if (url.indexOf('?') != -1) {
  1885. url = url + '&';
  1886. } else {
  1887. url = url + '?';
  1888. }
  1889. $.getJSON(url+'json=1&callback=?',send,function(t)
  1890. {
  1891. t = t.data;
  1892. showAlert(t, func, t);
  1893. /*
  1894. $('#dever_modal_body').html(t);
  1895. $('#dever_modal_title').html(title);
  1896. if(func)
  1897. {
  1898. $("#dever_modal_yes").unbind('click').bind('click', func);
  1899. }
  1900. */
  1901. });
  1902. }
  1903. }
  1904. function updateMsg(id)
  1905. {
  1906. $("#"+id).submit();
  1907. }
  1908. function showAlert(msg, func, title, index, t)
  1909. {
  1910. if (!title) {
  1911. title = '温馨提示';
  1912. }
  1913. var type = 0;
  1914. if (msg.indexOf('<') != -1) {
  1915. type = 1;
  1916. }
  1917. if (t) {
  1918. type = t;
  1919. }
  1920. var config = {
  1921. type: 0,
  1922. title: title,
  1923. shade: 0.1,
  1924. shadeClose : true,
  1925. content: msg
  1926. };
  1927. if (index) {
  1928. config.zIndex = index;
  1929. }
  1930. config.scrollbar = false;
  1931. if (type == 1) {
  1932. config.type = 1;
  1933. config.btn = ['保存', '关闭'];
  1934. if (func) {
  1935. config.area = ['800px', '500px'];
  1936. config.btn = ['保存', '关闭'];
  1937. } else {
  1938. config.area = ['500px', '550px'];
  1939. config.btn = ['关闭'];
  1940. }
  1941. } else if (type == 2) {
  1942. config.type = 1;
  1943. config.btn = [];
  1944. config.area = ['800px', '550px'];
  1945. }
  1946. config.cancel = config.btn2 = function(index)
  1947. {
  1948. layer.close(index);
  1949. };
  1950. if (func) {
  1951. config.yes = function(index)
  1952. {
  1953. func(index);
  1954. };
  1955. } else {
  1956. config.yes = config.cancel;
  1957. }
  1958. config.success = function() {
  1959. //$('.layui-layer-content').css('padding', '10px');
  1960. }
  1961. config.end = function() {
  1962. $('.layui-layer-content').css('overflow-x', 'auto');
  1963. $('#update_button').show();
  1964. }
  1965. var index = layer.open(config);
  1966. }
  1967. function fastEdit(e, url, title, col, index, type)
  1968. {
  1969. var func = function()
  1970. {
  1971. $(".fast").submit();
  1972. };
  1973. var send = {};
  1974. if (col) {
  1975. send.col = col;
  1976. }
  1977. $.get(url + '&fast=1',send,function(t)
  1978. {
  1979. var html = '';
  1980. var valid = '';
  1981. var action = '';
  1982. if ($(t).find('form').length && !$(t).find('#form1').length) {
  1983. if ($(t).find('form').length > 1) {
  1984. var form = $(t).find('form').eq(1);
  1985. form.addClass('layui-card-body');
  1986. } else {
  1987. var form = $(t).find('form').eq(0);
  1988. }
  1989. action = form.attr('action');
  1990. form.addClass('fast');
  1991. form.find('#function').eq(0).val('showYes');
  1992. var html = form.prop("outerHTML");
  1993. if ($(t).find('#valid').length) {
  1994. var valid = $(t).find('#valid').prop("outerHTML");
  1995. html = html + valid;
  1996. }
  1997. if (html.indexOf('left: 740px') != -1) {
  1998. html = html.replace('left: 740px', 'left:583px;')
  1999. }
  2000. } else {
  2001. html = t;
  2002. func = false;
  2003. }
  2004. /*
  2005. if ($(html).find('.layui-card-body').length > 0) {
  2006. html = html.replace('class="layui-card-body"', 'class="layui-card-body" style="display:none"');
  2007. html = html.replaceAll('class="layui-btn layuiadmin-btn-list"', 'class="layui-btn layuiadmin-btn-list" style="display:none"');
  2008. }
  2009. */
  2010. if (!action) {
  2011. type = 2;
  2012. func = false;
  2013. }
  2014. if (index == 1) {
  2015. showAlert(html, func, title, 19850422, type);
  2016. } else {
  2017. showAlert(html, func, title, false, type);
  2018. }
  2019. $('.layui-layer-content').css('overflow-x', 'hidden');
  2020. if ($('#update_button').length) {
  2021. $('#update_button').hide();
  2022. }
  2023. layui.use(['formSelects', 'form'], function(){
  2024. var form = layui.form;
  2025. form.render();
  2026. $("select").each(function()
  2027. {
  2028. if ($(this).attr('xm-select')) {
  2029. layui.formSelects.render($(this).attr('xm-select'));
  2030. }
  2031. })
  2032. });
  2033. init(560);
  2034. });
  2035. }
  2036. /*
  2037. var test =
  2038. {
  2039. refreshPage: false,
  2040. addAjaxFlag: true,
  2041. //添加收藏
  2042. add: function(cfg)
  2043. {
  2044. }
  2045. }
  2046. */
  2047. function showToggle(e)
  2048. {
  2049. var id = e.attr('toggle');
  2050. var child = e.attr('toggle_child');
  2051. var parent = e.parent();
  2052. parent.parent().find('li').removeClass('active');
  2053. parent.addClass('active');
  2054. $(child).fadeOut(100);
  2055. $(id).fadeIn(500);
  2056. initEditor($(id).find('.editor'));
  2057. }
  2058. function addChange(e)
  2059. {
  2060. var val = e.val();
  2061. if (val == 0) {
  2062. var o = e.find('option:selected');
  2063. var type = o.attr('data-type');
  2064. if (type && type == 'add') {
  2065. var url = o.attr('data-url');
  2066. var p = e.parent();
  2067. if (p.find('.addchange').length < 1) {
  2068. p.html(p.html() + '<div class="addchange"></div>');
  2069. }
  2070. p.find('.addchange').html('<input type="text" class="update_value form-control layui-input " name="update_pic" id="update_pic_pic" value="" autocomplete="off" style="width:25%">');
  2071. }
  2072. }
  2073. }
  2074. function loadChange(e, load)
  2075. {
  2076. var val = e.val();
  2077. showLoad(load, [val]);
  2078. }
  2079. function showLoad(id, value)
  2080. {
  2081. var e = $('#update_' + id);
  2082. if (!value) {
  2083. e.html('');
  2084. return;
  2085. }
  2086. e.html('加载中...');
  2087. var url = e.attr("data-load");
  2088. var cate = e.attr("data-cate");
  2089. var id = e.attr("data-id");
  2090. var send = {};
  2091. send['json'] = 1;
  2092. if (cate) {
  2093. send[cate] = value.join(',');
  2094. }
  2095. if (id) {
  2096. send['id'] = id;
  2097. }
  2098. $.getJSON(url, send, function(t)
  2099. {
  2100. if (t.status == 1) {
  2101. e.html(t.data);
  2102. } else {
  2103. e.html('');
  2104. }
  2105. });
  2106. }
  2107. var level_value = [];
  2108. var select_api = {};
  2109. var select_api_name = [];
  2110. var select_api_title = '';
  2111. var select_api_open = '';
  2112. function select_linkage(level, id, url, name, value, valid, w, total, search, level_param, col, api, type, title, open, load)
  2113. {
  2114. var e = '#' + id;
  2115. var parent = value.split(',');
  2116. var cur = parent[0];
  2117. parent.remove(cur);
  2118. value = parent.join(',');
  2119. var html = '';
  2120. var old = level;
  2121. var level_name = '';
  2122. if (!total) {
  2123. level_id = 0;
  2124. } else {
  2125. if (level >= total) {
  2126. //$(e).show();
  2127. return;
  2128. }
  2129. level_id = $(e + '_' + level).val();
  2130. if (level_id.indexOf('|') != -1) {
  2131. var temp = level_id.split('|');
  2132. if (level == 1) {
  2133. select_api_name = [];
  2134. }
  2135. level_id = temp[0];
  2136. level_name = temp[1];
  2137. select_api_name[level-1] = level_name;
  2138. }
  2139. level = parseInt(level) + 1;
  2140. }
  2141. var api_name = '';
  2142. if (col && api) {
  2143. select_api_title = title;
  2144. select_api_open = open;
  2145. if (name.indexOf('_no') == -1) {
  2146. api_name = name;
  2147. } else {
  2148. var t = name.split('_no');
  2149. api_name = t[0];
  2150. }
  2151. name += '_no';
  2152. }
  2153. $.getJSON(url + '&json=1&callback=?', {level_search:search, level_id:level_id, level_num:level,level_param:level_param}, function(t) {
  2154. var check = '';
  2155. if (t.status == 1) {
  2156. if (level == 2) {
  2157. level_value = [];
  2158. }
  2159. if (load && level_id > 0) {
  2160. level_value.push(level_id);
  2161. showLoad(load, level_value);
  2162. }
  2163. var total = t.data.level_total;
  2164. var data = t.data.list;
  2165. if(!$(e + '_' + level).length) {
  2166. html = '<select lay-ignore style="display:inline;margin-top:10px;'+w+'" class="layui-input layui-select update_value form-control '+valid+' '+name+'" id="'+id+'_'+level+'" name="'+name+'[]" onchange="select_linkage(\''+level+'\', \''+id+'\', \''+url+'\', \''+name+'\', \''+value+'\', \''+valid+'\', \''+w+'\', '+total+', \''+search+'\', \''+level_param+'\', \''+col+'\', \''+api+'\', \''+type+'\', \''+title+'\', \''+open+'\', \''+load+'\');">';
  2167. }
  2168. for (a in data) {
  2169. if (data[a].value) {
  2170. check = '';
  2171. if (cur == data[a].value) {
  2172. check = ' selected';
  2173. }
  2174. var v = data[a].value;
  2175. if (col && api) {
  2176. v = data[a].value + '|' + data[a].name;
  2177. }
  2178. html += '<option value="'+v+'" '+check+'>'+data[a].name+'</option>';
  2179. }
  2180. }
  2181. if(!$(e + '_' + level).length) {
  2182. html += '</select><span>&nbsp;&nbsp;</span>';
  2183. $(e).append(html);
  2184. $(e + '_' + level).change();
  2185. } else {
  2186. $(e + '_' + level).html(html);
  2187. $(e + '_' + level).change();
  2188. }
  2189. } else {
  2190. if (level == 2) {
  2191. level_value = [];
  2192. if (load && level_id < 0) {
  2193. showLoad(load, false);
  2194. }
  2195. }
  2196. if (load && level_id > 0) {
  2197. level_value.push(level_id)
  2198. showLoad(load, level_value);
  2199. }
  2200. $(e + '_' + old).nextAll('select').remove();
  2201. $(e + '_' + old).next('span').nextAll('span').remove();
  2202. }
  2203. if (col && api && level_id > 0) {
  2204. var send = {};
  2205. send[col] = level_id;
  2206. $.getJSON(api + '&json=1&callback=?', send, function(r) {
  2207. var h = '<ul style="list-style:none;margin-top: 20px;display:;" class="">';
  2208. if (type == 'checkbox') {
  2209. h += '<li style="display:inline;margin-left:15px;"><input class="update_value" type="checkbox" onclick="select_linkage_check_all($(this), \'check_level_'+level_id+'\', \''+level_id+'\', \''+select_api_name.join('->')+'\', \''+e+'\', \''+api_name+'\')" value=""/>&nbsp;&nbsp;全选</li>';
  2210. }
  2211. for (var i in r.data) {
  2212. if (r.data[i]['name']) {
  2213. var checked = false;
  2214. if (select_api['level_' + level_id] && select_api['level_' + level_id]['value'] && select_api['level_' + level_id]['value']['id_' + r.data[i]['id']] && select_api['level_' + level_id]['value']['id_' + r.data[i]['id']]['state'] == 1) {
  2215. checked = true;
  2216. }
  2217. h += '<li style="display:inline;margin-left:15px;"><input onclick="select_linkage_check($(this), \''+level_id+'\', \''+select_api_name.join('->')+'\', \''+e+'\', \''+api_name+'\')" '+(checked ? 'checked' : '')+' class="update_value check_level_'+level_id+'" type="' + type + '" id="'+id+'_'+r.data[i]['id']+'" value="'+r.data[i]['id']+'|' + r.data[i]['name'] + '"/>&nbsp;&nbsp;' + r.data[i]['name'] + '</li>';
  2218. }
  2219. }
  2220. h += '</ul>';
  2221. $(e + '_content').html(h);
  2222. });
  2223. }
  2224. /*
  2225. if ($('#' + name + '_level_value').length) {
  2226. var total = $(id).find('select').length;
  2227. $('#' + name + '_level_value').val(total);
  2228. }
  2229. if ($('#' + name + '_up_value').length) {
  2230. $('#' + name + '_up_value').val($(id + '_-2').val());
  2231. }
  2232. */
  2233. });
  2234. if (col && api) {
  2235. select_linkage_check_show(e, api_name);
  2236. }
  2237. }
  2238. function select_linkage_check_all(e, cur, level_id, level_name, id, api_name)
  2239. {
  2240. var checked = e.prop('checked');
  2241. $('.' + cur).each(function() {
  2242. $(this).prop('checked', checked);
  2243. select_linkage_check($(this), level_id, level_name, id, api_name);
  2244. })
  2245. }
  2246. function select_linkage_check(e, level_id, level_name, id, api_name, cid)
  2247. {
  2248. var level_key = 'level_' + level_id;
  2249. if (!select_api[level_key]) {
  2250. select_api[level_key] = {};
  2251. select_api[level_key]['id'] = level_id;
  2252. select_api[level_key]['name'] = level_name;
  2253. select_api[level_key]['value'] = {};
  2254. }
  2255. var value = e.val();
  2256. var temp = value.split('|');
  2257. var key = 'id_' + temp[0];
  2258. if (e.prop('checked')) {
  2259. select_api[level_key]['value'][key] = {};
  2260. select_api[level_key]['value'][key]['id'] = temp[0];
  2261. select_api[level_key]['value'][key]['name'] = temp[1];
  2262. select_api[level_key]['value'][key]['state'] = 1;
  2263. } else {
  2264. if (select_api[level_key] && select_api[level_key]['value'] && select_api[level_key]['value'][key]) {
  2265. select_api[level_key]['value'][key]['state'] = 2;
  2266. }
  2267. if (cid) {
  2268. $(cid).prop('checked', false);
  2269. }
  2270. }
  2271. select_linkage_check_show(id, api_name);
  2272. }
  2273. function select_linkage_check_show(id, api_name)
  2274. {
  2275. if (select_api) {
  2276. var select_api_json = JSON.stringify(select_api);
  2277. var html = '<div style="margin-top: 20px;display:;border: 1px solid #5050b1;padding: 10px;">';
  2278. for (var i in select_api) {
  2279. if (select_api[i]['value']) {
  2280. html += '[' + select_api[i]['name'] + ']:<ul style="list-style:none;" class="">';
  2281. for (var j in select_api[i]['value']) {
  2282. var n = '&nbsp;&nbsp;' + select_api[i]['value'][j]['name'];
  2283. if (select_api_open) {
  2284. var o = select_api_open.replace('{id}', select_api[i]['value'][j]['id']);
  2285. n = '<a href="javascript:;" onclick="fastEdit($(this), \''+o+'\', \''+select_api_title+'\', \'\', 1,1)">'+n+'</a>';
  2286. }
  2287. if (select_api[i]['value'][j]['state'] == 2) {
  2288. n += '[已删除]';
  2289. var checked = false;
  2290. } else {
  2291. var checked = true;
  2292. }
  2293. html += '<li style="display:inline;margin-left:15px;"><input onclick="select_linkage_check($(this), \''+select_api[i]['id']+'\', \''+select_api[i]['name']+'\', \''+id+'\', \''+api_name+'\', \''+id+'_'+select_api[i]['value'][j]['id']+'\')" '+(checked ? 'checked' : '')+' class="update_value" type="checkbox" id="s_'+select_api[i]['value'][j]['id']+'_test" name="s_'+select_api[i]['value'][j]['id']+'_test" value="'+select_api[i]['value'][j]['id']+'|' + select_api[i]['value'][j]['name'] + '"/>'+n+'</li>';
  2294. }
  2295. html += '</ul>';
  2296. }
  2297. }
  2298. html += '</div>';
  2299. html += '<textarea name="'+api_name+'" style="display:none">'+select_api_json+'</textarea>';
  2300. $(id + '_data').html(html);
  2301. }
  2302. }
  2303. /*
  2304. function select_mul(level, id, url, name, value, valid, w, num)
  2305. {
  2306. if(level == 0)
  2307. {
  2308. $(id).find('select').remove();
  2309. $(id).find('span').remove();
  2310. return;
  2311. }
  2312. var parent = value.split(',');
  2313. var cur = parent[0];
  2314. parent.remove(cur);
  2315. value = parent.join(',');
  2316. var html = '';
  2317. var old = level;
  2318. if(level != -1)
  2319. {
  2320. if($(id + '_' + level).length)
  2321. {
  2322. level = $(id + '_' + level).val();
  2323. }
  2324. alert(level);
  2325. if(level == 0)
  2326. {
  2327. $(id + '_' + old).nextAll('select').remove();
  2328. $(id + '_' + old).next('span').nextAll('span').remove();
  2329. if($('#' + name + '_level_value').length)
  2330. {
  2331. var total = $(id).find('select').length;
  2332. $('#' + name + '_level_value').val(total);
  2333. }
  2334. if(old == -2 && $('#' + name + '_value_value').length)
  2335. {
  2336. $('#' + name + '_value_value').val(level);
  2337. }
  2338. return;
  2339. }
  2340. if(old == -2)
  2341. {
  2342. $(id + '_' + old).nextAll('select').remove();
  2343. $(id + '_' + old).next('span').nextAll('span').remove();
  2344. }
  2345. if($('#' + name + '_value_value').length)
  2346. {
  2347. $('#' + name + '_value_value').val(level);
  2348. }
  2349. }
  2350. var total = $(id).find('select').length;
  2351. if(num > 0 && total >= num)
  2352. {
  2353. return;
  2354. }
  2355. var get = url.replace('{level}', level);
  2356. if(level == -1)
  2357. {
  2358. level = -2;
  2359. }
  2360. if(!$(id + '_' + level).length)
  2361. {
  2362. $.getJSON(get + '&json=1', {total:total,level:level}, function(t)
  2363. {
  2364. var check = '';
  2365. if(t.status == 1)
  2366. {
  2367. 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+');">';
  2368. console.log(t.data);
  2369. for(a in t.data)
  2370. {
  2371. if(t.data[a].value)
  2372. {
  2373. check = '';
  2374. if(cur == t.data[a].value)
  2375. {
  2376. check = ' selected';
  2377. }
  2378. html += '<option value="'+t.data[a].value+'" '+check+'>'+t.data[a].name+'</option>';
  2379. }
  2380. }
  2381. html += '</select><span>&nbsp;&nbsp;</span>';
  2382. $(id).append(html);
  2383. $(id + '_' + level).change();
  2384. }
  2385. else
  2386. {
  2387. $(id + '_' + old).nextAll('select').remove();
  2388. $(id + '_' + old).next('span').nextAll('span').remove();
  2389. }
  2390. if($('#' + name + '_level_value').length)
  2391. {
  2392. var total = $(id).find('select').length;
  2393. $('#' + name + '_level_value').val(total);
  2394. }
  2395. if($('#' + name + '_up_value').length)
  2396. {
  2397. $('#' + name + '_up_value').val($(id + '_-2').val());
  2398. }
  2399. });
  2400. }
  2401. }
  2402. */
  2403. //处理更新页面的一些功能,写到一起吧
  2404. var dever_update =
  2405. {
  2406. addIndex : 2,
  2407. index : [],
  2408. auto : false,
  2409. save_key : '',
  2410. init : function()
  2411. {
  2412. var self = this;
  2413. self.index = [];
  2414. // 增加整个更新的表单
  2415. if($(".dever_update_add").length)
  2416. {
  2417. $('.dever_update_add').unbind('click').bind('click', function()
  2418. {
  2419. self.add($(this));
  2420. })
  2421. }
  2422. /* 以后再增加 同时更新另外一个表
  2423. if($(".form-add-content").length)
  2424. {
  2425. var url = config.host + 'auth.password';
  2426. var url = 'http://localhost/dever/manage/?database.update?project=weixin&table=message&menu=weixin&menu_id=39&ajax=1';
  2427. $.get(url, function(t)
  2428. {
  2429. $(".form-add-content").html(t);
  2430. init();
  2431. })
  2432. }
  2433. */
  2434. //增加某一部分表单
  2435. if($(".dever_form_add").length)
  2436. {
  2437. $('.dever_form_add').each(function()
  2438. {
  2439. var key = $.attr('toggle_key');
  2440. if(typeof(self.index[key]) == "undefined")
  2441. {
  2442. self.index[key] = 0;
  2443. }
  2444. $(this).unbind('click').bind('click', function()
  2445. {
  2446. self.append($(this));
  2447. })
  2448. })
  2449. self.del();
  2450. }
  2451. // 开启自动保存
  2452. if($("#struct").length)
  2453. {
  2454. var save = $("#struct").attr('save');
  2455. if(save == 'yes')
  2456. {
  2457. //检测
  2458. self.save_key = location.href + 'test';
  2459. self.check();
  2460. }
  2461. }
  2462. if($('.dever-note').length)
  2463. {
  2464. $('.dever-note').each(function()
  2465. {
  2466. var mditor = new Mditor($(this),{
  2467. fixedHeight:true
  2468. });
  2469. mditor.openPreview();
  2470. })
  2471. }
  2472. },
  2473. save : function()
  2474. {
  2475. //var data = $("#data-1").html();
  2476. var data = [];
  2477. $(".update_value").each(function(i)
  2478. {
  2479. if($(this).attr("update_type") == 'checked')
  2480. {
  2481. data[i] = $(this).get(0).checked;
  2482. }
  2483. else if($(this).attr("update_type") == 'html')
  2484. {
  2485. data[i] = $(this).html();
  2486. }
  2487. else if($(this).attr("update_type") == 'src')
  2488. {
  2489. data[i] = $(this).attr('src');
  2490. }
  2491. else
  2492. {
  2493. data[i] = $(this).val();
  2494. }
  2495. });
  2496. store.set(this.save_key, data.join('|||'));
  2497. //console.info(data);
  2498. },
  2499. recover : function()
  2500. {
  2501. var index = layer.confirm('确定恢复上次保存的数据吗?', function(i, l)
  2502. {
  2503. $(l).find('.layui-layer-btn0').css('pointer-events','none');
  2504. var data = store.get(this.save_key).split('|||');
  2505. if(data)
  2506. {
  2507. var value = $(".update_value");
  2508. for(var k in data)
  2509. {
  2510. var e = value.eq(k);
  2511. if(e.attr('update_type') == 'checked')
  2512. {
  2513. if(data[k] == 'true')
  2514. {
  2515. e.get(0).checked = true;
  2516. }
  2517. else
  2518. {
  2519. e.get(0).checked = false;
  2520. }
  2521. }
  2522. else if(e.attr('update_type') == 'html')
  2523. {
  2524. e.html(data[k]);
  2525. }
  2526. else if(e.attr('update_type') == 'src')
  2527. {
  2528. e.attr('src', data[k]);
  2529. }
  2530. else
  2531. {
  2532. if(e.attr('id'))
  2533. {
  2534. var id = e.attr('id');
  2535. if(typeof(editors[id]) != "undefined")
  2536. {
  2537. editors[id].html(data[k]);
  2538. }
  2539. }
  2540. e.val(data[k]);
  2541. }
  2542. }
  2543. store.set(this.save_key, '');
  2544. this.check();
  2545. }
  2546. })
  2547. },
  2548. check : function()
  2549. {
  2550. var data = store.get(this.save_key);
  2551. var self = this;
  2552. if(data)
  2553. {
  2554. $(".dever_save").unbind('click').bind('click', function()
  2555. {
  2556. self.recover();
  2557. }).show();
  2558. }
  2559. else
  2560. {
  2561. $(".dever_save").hide();
  2562. self.auto = setInterval(function(){self.save()}, 3000);
  2563. }
  2564. },
  2565. del : function()
  2566. {
  2567. var self = this;
  2568. if($(".dever_form_delete").length)
  2569. {
  2570. $('.dever_form_delete').each(function()
  2571. {
  2572. $(this).unbind('click').bind('click', function()
  2573. {
  2574. var parent = $(this).parent();
  2575. var id = parent.attr('id');
  2576. var index = parseInt($('#tab-' + id).attr('toggle_id'));
  2577. var key = $('#tab-' + id).attr('toggle_key');
  2578. if(index <= 1 && self.index[key] <= index)
  2579. {
  2580. }
  2581. else if(index <= 1 && self.index[key] > index)
  2582. {
  2583. index = index+1;
  2584. $("#tab-"+key+"-child-" + index).click();
  2585. }
  2586. else
  2587. {
  2588. index = index-1;
  2589. $("#tab-"+key+"-child-" + index).click();
  2590. };
  2591. $('#tab-' + id).parent().remove();
  2592. parent.remove();
  2593. self.index[key]--;
  2594. })
  2595. })
  2596. }
  2597. },
  2598. append : function(e)
  2599. {
  2600. var self = this;
  2601. var key = e.attr('toggle_key');
  2602. var parent = e.parent().parent().parent();
  2603. var child = '.dever_'+key+'_child';
  2604. if(typeof(self.index[key]) == "undefined")
  2605. {
  2606. self.index[key] = 0;
  2607. }
  2608. if (isNaN(self.index[key])) {
  2609. self.index[key] = 0;
  2610. }
  2611. if(self.index[key] <= 0)
  2612. {
  2613. self.index[key] = parent.find(child).length;
  2614. }
  2615. if(self.index[key] > 100)
  2616. {
  2617. layer.showAlert('最多只能增加100条');
  2618. return;
  2619. }
  2620. var p = e.parent();
  2621. var id = key + '-child-' + self.index[key];
  2622. var name = '第' + (self.index[key]) + '条';
  2623. p.before('<li style="margin:0px;padding:0 15px;"><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>');
  2624. var e = e.parent().parent();
  2625. var n = e.next();
  2626. var p = e.parent();
  2627. var content = n.html();
  2628. content = content.replaceAll('_c_', '_c_' + (self.index[key]-1) + '_i_');
  2629. var cname = n.attr('class');
  2630. if (cname.indexOf('layui-tab') > -1) {
  2631. content = '<div id="'+id+'" style="display:none;" class="'+n.attr('class')+'">' + content + '</div>';
  2632. } else {
  2633. //content = '<div id="'+id+'" style="display:none;margin:10px" class="'+n.attr('class')+' dever_form_add_child">' + content + '</div>';
  2634. content = '<div id="'+id+'" style="display:none;margin:10px" class="'+n.attr('class')+'">' + content + '</div>';
  2635. }
  2636. p.append(content);
  2637. if ($("#" + id).find('.ke-container').length >= 1) {
  2638. $("#" + id).find('.ke-container').eq(0).remove();
  2639. }
  2640. $('#update_' + key +'_c_' + (self.index[key]-1) + '_i_' + 'order_value').val(parseInt($('#update_' + key +'_c_' + (self.index[key]-2) + '_i_' + 'order_value').val())+1);
  2641. self.del();
  2642. //$("html,body").animate({scrollTop:$('.dever_form_add_child').eq(this.appendIndex).offset().top},500);
  2643. self.index[key]++;
  2644. image();
  2645. loadShow();
  2646. autocomplete();
  2647. change();
  2648. layui.use(['formSelects'], function(){
  2649. $('#' + id + " select").each(function()
  2650. {
  2651. if ($(this).attr('xm-select')) {
  2652. layui.formSelects.render($(this).attr('xm-select'));
  2653. }
  2654. })
  2655. });
  2656. },
  2657. add : function(e)
  2658. {
  2659. var self = this;
  2660. var p = e.parent();
  2661. var id = 'data-' + this.addIndex;
  2662. var name = '新增数据-' + (this.addIndex-1);
  2663. p.before('<li><a href="#'+id+'" data-toggle="tab">'+name+'</a></li>');
  2664. var content = $("#content").find('.tab-pane').eq(0).html();
  2665. content = content.replaceAll('update_', 'update_' + this.addIndex + '__');
  2666. content = '<div class="tab-pane fade" id="'+id+'">' + content + '</div>';
  2667. $("#content").append(content);
  2668. $('#update_' + this.addIndex + '__where_id').val('-1');
  2669. this.addIndex++;
  2670. }
  2671. }
  2672. $.fn.pasteEvents = function( delay ) {
  2673. if (delay == undefined) delay = 20;
  2674. return $(this).each(function() {
  2675. var $el = $(this);
  2676. $el.on("paste", function() {
  2677. $el.trigger("prepaste");
  2678. setTimeout(function() { $el.trigger("postpaste"); }, delay);
  2679. });
  2680. });
  2681. };
  2682. $("textarea").on("postpaste", function()
  2683. {
  2684. if($(this).val().indexOf('<') != -1)
  2685. {
  2686. $(this).val(toMarkdown($(this).val()));
  2687. }
  2688. }).pasteEvents();
  2689. function showYes(msg)
  2690. {
  2691. if (msg.status == 2) {
  2692. layer.alert(msg.msg);
  2693. } else {
  2694. showAlert('保存成功', function() {
  2695. if (select_api_open) {
  2696. $('.layui-layer-content').css('overflow-x', 'auto');
  2697. $('#update_button').show();
  2698. layer.closeAll();
  2699. } else {
  2700. if(msg.data.indexOf('http') != -1) {
  2701. location.href = msg.data;
  2702. } else {
  2703. location.reload()
  2704. }
  2705. }
  2706. });
  2707. }
  2708. }
  2709. function setDay(e, d)
  2710. {
  2711. $('#search_option_sday').val(d);
  2712. $('.sday_button').removeClass('sday_button_border');
  2713. e.addClass('sday_button_border');
  2714. var date = new Date();
  2715. var year = date.getFullYear();
  2716. var month = date.getMonth()+1;
  2717. var day = date.getDate();
  2718. var nowDate = year + "-" + (month < 10 ? "0" + month : month) + "-" + (day < 10 ? "0" + day : day);
  2719. //获取30天前得日期
  2720. var lastDate = new Date(date - 1000 * 60 * 60 * 24 * d);
  2721. var lastY = lastDate.getFullYear();
  2722. var lastM = lastDate.getMonth()+1;
  2723. var lastD = lastDate.getDate();
  2724. var LDate = lastY + "-" + (lastM < 10 ? "0" + lastM : lastM) + "-" + (lastD < 10 ? "0" + lastD : lastD);
  2725. $('.manage_sday').eq(0).val(LDate);
  2726. $('.manage_sday').eq(1).val(nowDate);
  2727. }
  2728. function setDate(e, d)
  2729. {
  2730. $('#search_option_sdate').val(d);
  2731. $('.sdate_button').removeClass('sdate_button_border');
  2732. e.addClass('sdate_button_border');
  2733. var date = new Date();
  2734. var year = date.getFullYear();
  2735. var month = date.getMonth()+1;
  2736. var day = date.getDate();
  2737. var nowDate = year + "-" + (month < 10 ? "0" + month : month) + "-" + (day < 10 ? "0" + day : day);
  2738. //获取30天前得日期
  2739. var lastDate = new Date(date - 1000 * 60 * 60 * 24 * d);
  2740. var lastY = lastDate.getFullYear();
  2741. var lastM = lastDate.getMonth()+1;
  2742. var lastD = lastDate.getDate();
  2743. var LDate = lastY + "-" + (lastM < 10 ? "0" + lastM : lastM) + "-" + (lastD < 10 ? "0" + lastD : lastD);
  2744. $('.manage_sdate').eq(0).val(LDate + ' 00:00:00');
  2745. $('.manage_sdate').eq(1).val(nowDate + ' 23:59:59');
  2746. }
  2747. function showVideo(video)
  2748. {
  2749. var html = '<meta name="referrer" content="no-referrer"><video width="400" height="300" controls autoplay="autoplay"><source src="'+video+'" type="video/mp4">您的浏览器不支持Video标签。</video>';
  2750. showAlert(html);
  2751. }